Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ReadingWritingEntityEventArgs.cs / 1 / ReadingWritingEntityEventArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Event args for the event fired during reading or writing of // an entity serialization/deserialization // //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Net; using System.Linq; using System.Xml.Linq; using System.Diagnostics; ////// Event args for the event fired during reading or writing of /// an entity serialization/deserialization /// public sealed class ReadingWritingEntityEventArgs : EventArgs { ///The entity being (de)serialized private object entity; ///The ATOM entry data to/from the network private XElement data; ////// Constructor /// /// The entity being (de)serialized /// The ATOM entry data to/from the network internal ReadingWritingEntityEventArgs(object entity, XElement data) { this.entity = entity; this.data = data; } ///The entity being (de)serialized public object Entity { get { return this.entity; } } ///The ATOM entry data to/from the network public XElement Data { [DebuggerStepThrough] get { return this.data; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Event args for the event fired during reading or writing of // an entity serialization/deserialization // //--------------------------------------------------------------------- namespace System.Data.Services.Client { using System; using System.Net; using System.Linq; using System.Xml.Linq; using System.Diagnostics; ////// Event args for the event fired during reading or writing of /// an entity serialization/deserialization /// public sealed class ReadingWritingEntityEventArgs : EventArgs { ///The entity being (de)serialized private object entity; ///The ATOM entry data to/from the network private XElement data; ////// Constructor /// /// The entity being (de)serialized /// The ATOM entry data to/from the network internal ReadingWritingEntityEventArgs(object entity, XElement data) { this.entity = entity; this.data = data; } ///The entity being (de)serialized public object Entity { get { return this.entity; } } ///The ATOM entry data to/from the network public XElement Data { [DebuggerStepThrough] get { return this.data; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WindowsToolbarItemAsMenuItem.cs
- EntityContainerEmitter.cs
- HttpCookie.cs
- LeaseManager.cs
- RegisterInfo.cs
- DeferredElementTreeState.cs
- AbstractSvcMapFileLoader.cs
- BaseDataList.cs
- ImageCollectionEditor.cs
- AutoCompleteStringCollection.cs
- CryptoApi.cs
- ColorPalette.cs
- TcpWorkerProcess.cs
- PrintDialog.cs
- AccessedThroughPropertyAttribute.cs
- ObjectNavigationPropertyMapping.cs
- WebServiceEnumData.cs
- Atom10FormatterFactory.cs
- DBNull.cs
- SerializerProvider.cs
- ScaleTransform3D.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- ObjectStorage.cs
- StylusPointPropertyUnit.cs
- IdentityHolder.cs
- SingleAnimation.cs
- SystemIPInterfaceStatistics.cs
- TextMetrics.cs
- KnownIds.cs
- ClientTargetSection.cs
- GridViewColumnCollection.cs
- BamlBinaryReader.cs
- StoreItemCollection.Loader.cs
- CounterSampleCalculator.cs
- SByteConverter.cs
- InputBuffer.cs
- SerializationHelper.cs
- TypeLibConverter.cs
- DependencyPropertyKind.cs
- odbcmetadatacollectionnames.cs
- EditCommandColumn.cs
- SqlDataRecord.cs
- LoginCancelEventArgs.cs
- ResourceManager.cs
- FullTextLine.cs
- ConnectionStringsExpressionBuilder.cs
- MultipleViewPattern.cs
- MD5.cs
- EventLogPermissionAttribute.cs
- BaseDataList.cs
- DataProviderNameConverter.cs
- TypeSemantics.cs
- ExtensionQuery.cs
- CommandPlan.cs
- TraceFilter.cs
- DefaultObjectMappingItemCollection.cs
- RenderData.cs
- ExpressionConverter.cs
- XmlAttributeProperties.cs
- XPathNodeInfoAtom.cs
- IxmlLineInfo.cs
- GridToolTip.cs
- TextStore.cs
- ImageDrawing.cs
- XMLDiffLoader.cs
- AVElementHelper.cs
- ApplicationDirectoryMembershipCondition.cs
- XmlSchemaSubstitutionGroup.cs
- ExpressionHelper.cs
- DateRangeEvent.cs
- FormatSettings.cs
- StrokeCollectionConverter.cs
- SpecialNameAttribute.cs
- SizeAnimationBase.cs
- SimpleApplicationHost.cs
- SmiSettersStream.cs
- NativeMethods.cs
- ResetableIterator.cs
- WebPartMenu.cs
- HttpHandlerAction.cs
- InputLangChangeEvent.cs
- ParallelTimeline.cs
- ArraySortHelper.cs
- ParameterToken.cs
- COAUTHINFO.cs
- JournalEntry.cs
- GraphicsPathIterator.cs
- VirtualPath.cs
- RotateTransform.cs
- XamlReaderConstants.cs
- Base64Stream.cs
- KerberosSecurityTokenAuthenticator.cs
- DataListItemCollection.cs
- PersistencePipeline.cs
- Axis.cs
- AdapterUtil.cs
- StructuralComparisons.cs
- HostVisual.cs
- HttpConfigurationContext.cs
- SamlSecurityTokenAuthenticator.cs