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
- Byte.cs
- RadioButtonPopupAdapter.cs
- DataFieldConverter.cs
- SingleResultAttribute.cs
- PropertyRef.cs
- BigInt.cs
- ObjectTag.cs
- GridSplitterAutomationPeer.cs
- WebReferenceOptions.cs
- SystemResourceHost.cs
- InstanceOwnerQueryResult.cs
- listitem.cs
- SafeArchiveContext.cs
- KerberosSecurityTokenProvider.cs
- Ops.cs
- ToolStripDropDownItem.cs
- DbProviderManifest.cs
- SafeHGlobalHandleCritical.cs
- ListSortDescription.cs
- ListBoxAutomationPeer.cs
- DefaultEventAttribute.cs
- ValidationRule.cs
- DiscoveryDocumentReference.cs
- DataServiceKeyAttribute.cs
- PropertyGroupDescription.cs
- UnsafeNativeMethods.cs
- FileDialogCustomPlaces.cs
- User.cs
- SrgsElementFactoryCompiler.cs
- WebContext.cs
- XamlWriter.cs
- ReachDocumentReferenceCollectionSerializerAsync.cs
- DataGridViewColumn.cs
- FastEncoder.cs
- TextDecorations.cs
- ExceptionUtil.cs
- SlotInfo.cs
- DrawToolTipEventArgs.cs
- TaskSchedulerException.cs
- MatcherBuilder.cs
- ConfigurationSectionGroupCollection.cs
- QilInvokeEarlyBound.cs
- FormsIdentity.cs
- HashCodeCombiner.cs
- DataServiceEntityAttribute.cs
- TreeBuilderXamlTranslator.cs
- ContextMenuService.cs
- BinaryReader.cs
- FrameworkContentElement.cs
- ExeConfigurationFileMap.cs
- SetStateEventArgs.cs
- BinaryFormatterWriter.cs
- CellPartitioner.cs
- AttachInfo.cs
- DataContractSet.cs
- OracleParameter.cs
- HashCryptoHandle.cs
- StrokeDescriptor.cs
- ApplyTemplatesAction.cs
- AppDomainUnloadedException.cs
- Tokenizer.cs
- XmlSchemaDocumentation.cs
- VirtualPathProvider.cs
- KeyBinding.cs
- GridViewCancelEditEventArgs.cs
- DataGridViewCellStyle.cs
- XsltSettings.cs
- ProfileService.cs
- Italic.cs
- PolicyAssertionCollection.cs
- ModelService.cs
- ObjectListComponentEditor.cs
- CompoundFileStreamReference.cs
- IdentityHolder.cs
- DesignTable.cs
- Models.cs
- FileClassifier.cs
- DynamicValidator.cs
- XmlComment.cs
- TextBox.cs
- PageSetupDialog.cs
- TextRenderer.cs
- XmlDigitalSignatureProcessor.cs
- DataChangedEventManager.cs
- ToolBarButton.cs
- WindowsListView.cs
- DataControlField.cs
- XmlDataImplementation.cs
- Convert.cs
- GenericEnumConverter.cs
- OrderedDictionary.cs
- ActiveXHost.cs
- EncoderReplacementFallback.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- InstallerTypeAttribute.cs
- ConstraintEnumerator.cs
- PermissionSetTriple.cs
- EdgeProfileValidation.cs
- DataAdapter.cs
- IntegrationExceptionEventArgs.cs