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
- GcSettings.cs
- CompoundFileIOPermission.cs
- ExpressionNormalizer.cs
- SessionStateSection.cs
- AdornerDecorator.cs
- ActivityBuilderHelper.cs
- PathFigureCollection.cs
- SafeRegistryHandle.cs
- ping.cs
- CodeAttributeArgument.cs
- GeometryValueSerializer.cs
- VerticalAlignConverter.cs
- XmlSchemaAny.cs
- StringSource.cs
- ComMethodElement.cs
- XamlToRtfParser.cs
- CommandHelper.cs
- Stacktrace.cs
- StringExpressionSet.cs
- BindingManagerDataErrorEventArgs.cs
- ReferencedAssembly.cs
- XmlReaderSettings.cs
- WmiInstallComponent.cs
- DataGridPagingPage.cs
- CancelEventArgs.cs
- EncryptedXml.cs
- FixedHighlight.cs
- WindowsListViewGroup.cs
- ColumnReorderedEventArgs.cs
- MsmqReceiveParameters.cs
- VolatileEnlistmentState.cs
- DeclarativeCatalogPart.cs
- EventTrigger.cs
- SoapWriter.cs
- DPCustomTypeDescriptor.cs
- AsymmetricKeyExchangeFormatter.cs
- Set.cs
- DateTimeUtil.cs
- PageCodeDomTreeGenerator.cs
- OutputCacheProfileCollection.cs
- AndCondition.cs
- DataRowView.cs
- XmlSchemaInferenceException.cs
- BaseTemplateParser.cs
- DesignerMetadata.cs
- ConstructorNeedsTagAttribute.cs
- ScrollableControl.cs
- IDReferencePropertyAttribute.cs
- BaseWebProxyFinder.cs
- DataGridViewCellValidatingEventArgs.cs
- Parser.cs
- LeafCellTreeNode.cs
- ObjectListDesigner.cs
- AddInController.cs
- DataColumnPropertyDescriptor.cs
- TypeReference.cs
- UniformGrid.cs
- SessionState.cs
- ValidatorCollection.cs
- Overlapped.cs
- panel.cs
- TextAutomationPeer.cs
- ProtocolInformationReader.cs
- DocumentEventArgs.cs
- Base64Decoder.cs
- ipaddressinformationcollection.cs
- ColorConverter.cs
- IisTraceListener.cs
- RepeatInfo.cs
- HttpPostedFileBase.cs
- WebServiceResponse.cs
- LinearGradientBrush.cs
- XmlWrappingReader.cs
- NullableDoubleAverageAggregationOperator.cs
- BaseDataListActionList.cs
- FormatException.cs
- ConfigurationProperty.cs
- ReservationNotFoundException.cs
- NativeMethodsOther.cs
- BitmapEffectGeneralTransform.cs
- ResourceAttributes.cs
- SynchronizationLockException.cs
- DataQuery.cs
- GridItem.cs
- CompilerInfo.cs
- AssemblySettingAttributes.cs
- NativeMethods.cs
- XmlConvert.cs
- PartitionResolver.cs
- EdmScalarPropertyAttribute.cs
- ContractType.cs
- AddressingVersion.cs
- ToolStripControlHost.cs
- WindowsContainer.cs
- FixedSchema.cs
- DetailsViewRow.cs
- ChildDocumentBlock.cs
- WorkingDirectoryEditor.cs
- CapabilitiesRule.cs
- _HelperAsyncResults.cs