Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- UnsafeNativeMethodsMilCoreApi.cs
- Int32RectValueSerializer.cs
- SelectorItemAutomationPeer.cs
- Environment.cs
- filewebresponse.cs
- PresentationSource.cs
- DefaultBindingPropertyAttribute.cs
- DataSourceCollectionBase.cs
- remotingproxy.cs
- SmiConnection.cs
- GridViewSortEventArgs.cs
- ChannelPoolSettingsElement.cs
- Inline.cs
- ReflectionTypeLoadException.cs
- XmlSchemaElement.cs
- TimeSpanSecondsConverter.cs
- SQLMoney.cs
- DetailsViewRow.cs
- UnhandledExceptionEventArgs.cs
- PropertyGridEditorPart.cs
- DataGridItemCollection.cs
- Msec.cs
- DataAdapter.cs
- XmlChildEnumerator.cs
- CalendarAutomationPeer.cs
- TextViewSelectionProcessor.cs
- DocumentScope.cs
- SyndicationDeserializer.cs
- PerformanceCounters.cs
- FixedPageStructure.cs
- XmlRawWriterWrapper.cs
- BuildResultCache.cs
- WebPartDisplayModeCollection.cs
- ToolStripRendererSwitcher.cs
- ThumbAutomationPeer.cs
- IPPacketInformation.cs
- WebConfigurationHostFileChange.cs
- AudioException.cs
- TaskHelper.cs
- wgx_commands.cs
- Variant.cs
- BamlLocalizationDictionary.cs
- ISO2022Encoding.cs
- ProxyWebPartConnectionCollection.cs
- __Error.cs
- InternalBufferOverflowException.cs
- TabControlAutomationPeer.cs
- ApplicationProxyInternal.cs
- EdmScalarPropertyAttribute.cs
- AssemblyInfo.cs
- CodeSnippetExpression.cs
- PropertyMetadata.cs
- HandledEventArgs.cs
- CloudCollection.cs
- TempEnvironment.cs
- Vector3DCollectionConverter.cs
- IsolatedStorageFileStream.cs
- FilteredAttributeCollection.cs
- SrgsElement.cs
- PlanCompiler.cs
- TextServicesLoader.cs
- mactripleDES.cs
- FormViewPagerRow.cs
- SymLanguageVendor.cs
- LoggedException.cs
- NameValueConfigurationElement.cs
- __TransparentProxy.cs
- HttpRuntimeSection.cs
- SettingsPropertyValue.cs
- PlatformCulture.cs
- FreezableDefaultValueFactory.cs
- CodeActivityContext.cs
- SQLByteStorage.cs
- RepeaterItemCollection.cs
- SafeFileMappingHandle.cs
- View.cs
- CqlIdentifiers.cs
- QilXmlWriter.cs
- NetSectionGroup.cs
- TargetInvocationException.cs
- MatrixAnimationBase.cs
- FormViewPagerRow.cs
- GregorianCalendarHelper.cs
- PeerEndPoint.cs
- ToolStripManager.cs
- WindowsAltTab.cs
- SystemInfo.cs
- XmlRawWriterWrapper.cs
- WinFormsComponentEditor.cs
- RelationshipEndMember.cs
- InvalidAsynchronousStateException.cs
- Serializer.cs
- CodeRemoveEventStatement.cs
- SendingRequestEventArgs.cs
- WebResourceAttribute.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- ProxySimple.cs
- DecimalConverter.cs
- HebrewCalendar.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs