Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataWeb / Client / System / Data / Services / Client / ReadingWritingEntityEventArgs.cs / 1305376 / 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.Diagnostics; using System.Xml.Linq; ////// 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.Diagnostics; using System.Xml.Linq; ////// 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
- EventLogPermissionEntryCollection.cs
- EventSinkHelperWriter.cs
- Cursors.cs
- AnnotationStore.cs
- ContextMenuStrip.cs
- GeneralTransformGroup.cs
- ValueQuery.cs
- PersonalizationState.cs
- EditCommandColumn.cs
- Converter.cs
- DbConnectionPool.cs
- GenericUriParser.cs
- SizeAnimationBase.cs
- SapiInterop.cs
- ArrayConverter.cs
- ObjectListDesigner.cs
- TrackingMemoryStream.cs
- RightsManagementPermission.cs
- ExecutedRoutedEventArgs.cs
- RequestQueue.cs
- CatalogPart.cs
- FormatterServicesNoSerializableCheck.cs
- ExtensionSurface.cs
- WorkflowItemsPresenter.cs
- coordinatorfactory.cs
- ActivationArguments.cs
- ButtonDesigner.cs
- HtmlSelect.cs
- BrowserCapabilitiesFactory.cs
- SoapInteropTypes.cs
- BinaryReader.cs
- Separator.cs
- TypeLibConverter.cs
- XmlSchemaAll.cs
- ToolboxItem.cs
- SymbolPair.cs
- StrokeNodeOperations2.cs
- IntellisenseTextBox.designer.cs
- AnimatedTypeHelpers.cs
- DocumentPageHost.cs
- TreeNodeCollectionEditor.cs
- DesignerHelpers.cs
- VariantWrapper.cs
- InkPresenter.cs
- InvalidProgramException.cs
- ObjectViewQueryResultData.cs
- ImpersonateTokenRef.cs
- SkinBuilder.cs
- SqlResolver.cs
- ClientBase.cs
- ManipulationCompletedEventArgs.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- ConfigWriter.cs
- EngineSiteSapi.cs
- InstanceKeyCollisionException.cs
- ParallelRangeManager.cs
- ExpressionBuilder.cs
- WebEvents.cs
- PatternMatcher.cs
- PaintEvent.cs
- ServerType.cs
- ProcessProtocolHandler.cs
- HttpPostProtocolReflector.cs
- HighlightComponent.cs
- TcpActivation.cs
- NameHandler.cs
- XmlSchemaIdentityConstraint.cs
- _NegoStream.cs
- ExpressionBuilder.cs
- Encoding.cs
- WebPartZoneBase.cs
- ParamArrayAttribute.cs
- XPathArrayIterator.cs
- SelectionListComponentEditor.cs
- RelationshipType.cs
- CodeConstructor.cs
- MobileListItemCollection.cs
- TextAnchor.cs
- DateTimePicker.cs
- __FastResourceComparer.cs
- UpdateTracker.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- RemotingServices.cs
- FormatException.cs
- CancelEventArgs.cs
- HideDisabledControlAdapter.cs
- PackWebResponse.cs
- StringFreezingAttribute.cs
- StorageSetMapping.cs
- XmlSignatureManifest.cs
- CodeExpressionCollection.cs
- DateTimePickerDesigner.cs
- CodeTypeMember.cs
- KeyTimeConverter.cs
- ThreadAttributes.cs
- CompileXomlTask.cs
- UiaCoreProviderApi.cs
- SafeArrayRankMismatchException.cs
- CatalogPart.cs
- WebPartAddingEventArgs.cs