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
- TextBox.cs
- ConcurrentDictionary.cs
- ElementMarkupObject.cs
- ISAPIWorkerRequest.cs
- PolyBezierSegment.cs
- StorageConditionPropertyMapping.cs
- InstanceDataCollectionCollection.cs
- BooleanFunctions.cs
- TypeConverterValueSerializer.cs
- ActivityExecutorSurrogate.cs
- ResourceContainer.cs
- SubpageParaClient.cs
- TreeWalker.cs
- SortedList.cs
- SizeF.cs
- Ticks.cs
- ObjectCacheHost.cs
- AutomationPropertyInfo.cs
- X509CertificateTrustedIssuerElementCollection.cs
- AccessDataSourceView.cs
- ObjectItemAttributeAssemblyLoader.cs
- ReadOnlyDataSourceView.cs
- ObsoleteAttribute.cs
- ServicePointManager.cs
- InternalTypeHelper.cs
- QilValidationVisitor.cs
- ExitEventArgs.cs
- NetTcpSecurityElement.cs
- AttachedPropertyMethodSelector.cs
- ManagementObject.cs
- COM2PropertyPageUITypeConverter.cs
- RemotingServices.cs
- SmiEventSink_Default.cs
- SchemaNamespaceManager.cs
- SQLString.cs
- SqlReferenceCollection.cs
- EpmContentDeSerializerBase.cs
- _HeaderInfoTable.cs
- RequestResizeEvent.cs
- ExpandSegment.cs
- GeometryDrawing.cs
- ListItemParagraph.cs
- SendKeys.cs
- AssemblyInfo.cs
- StringValidator.cs
- ThreadStaticAttribute.cs
- DoWorkEventArgs.cs
- FigureParaClient.cs
- ConfigurationValues.cs
- ToolStripGrip.cs
- QueueProcessor.cs
- RegionIterator.cs
- InternalConfigSettingsFactory.cs
- InstalledFontCollection.cs
- InvalidFilterCriteriaException.cs
- EditingCoordinator.cs
- DefaultConfirmation.cs
- CodeCompiler.cs
- InputProcessorProfiles.cs
- AuthorizationRuleCollection.cs
- ContextInformation.cs
- AncillaryOps.cs
- TableLayoutCellPaintEventArgs.cs
- VariableModifiersHelper.cs
- SequenceQuery.cs
- ObjectTokenCategory.cs
- DataServiceProviderMethods.cs
- WSDualHttpBindingCollectionElement.cs
- PromptStyle.cs
- EventMappingSettingsCollection.cs
- ResourceWriter.cs
- HttpConfigurationContext.cs
- WebEventTraceProvider.cs
- UserControlAutomationPeer.cs
- AssemblyCache.cs
- WsdlBuildProvider.cs
- HttpAsyncResult.cs
- translator.cs
- Pen.cs
- SQLInt32Storage.cs
- ListBoxAutomationPeer.cs
- WindowsHyperlink.cs
- PkcsUtils.cs
- NotifyIcon.cs
- DbUpdateCommandTree.cs
- ScrollPattern.cs
- AttachedAnnotationChangedEventArgs.cs
- WindowsListViewItemStartMenu.cs
- VoiceChangeEventArgs.cs
- AccessText.cs
- XmlExpressionDumper.cs
- SQLGuidStorage.cs
- Win32NamedPipes.cs
- CssStyleCollection.cs
- DriveNotFoundException.cs
- XamlParser.cs
- ExplicitDiscriminatorMap.cs
- ParseNumbers.cs
- SoapTypeAttribute.cs
- PropagatorResult.cs