Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Objects / ObjectMaterializedEventArgs.cs / 1305376 / ObjectMaterializedEventArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace System.Data.Objects { ////// EventArgs for the ObjectMaterialized event. /// public class ObjectMaterializedEventArgs : EventArgs { ////// The object that was materialized. /// private readonly object _entity; ////// Constructs new arguments for the ObjectMaterialized event. /// /// The object that has been materialized. internal ObjectMaterializedEventArgs(object entity) { _entity = entity; } ////// The object that was materialized. /// public object Entity { get { return _entity; } } } ////// Delegate for the ObjectMaterialized event. /// /// The ObjectContext responsable for materializing the object. /// EventArgs containing a reference to the materialized object. public delegate void ObjectMaterializedEventHandler(object sender, ObjectMaterializedEventArgs e); } // 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
- PointUtil.cs
- DataColumnCollection.cs
- TextLineResult.cs
- QuaternionAnimation.cs
- Point3DAnimationBase.cs
- RedirectionProxy.cs
- SHA1Managed.cs
- RuntimeConfig.cs
- Constraint.cs
- PropertyEmitter.cs
- StylusPointCollection.cs
- MenuAdapter.cs
- WebBrowserBase.cs
- SystemFonts.cs
- HttpWriter.cs
- NativeMethods.cs
- ChangePasswordDesigner.cs
- DocumentXPathNavigator.cs
- PropertyExpression.cs
- PeerUnsafeNativeMethods.cs
- VariableQuery.cs
- ComboBoxDesigner.cs
- OuterGlowBitmapEffect.cs
- WebPartZoneBase.cs
- XmlSerializerVersionAttribute.cs
- PageRanges.cs
- ConstantProjectedSlot.cs
- ManualResetEventSlim.cs
- AssemblyFilter.cs
- Shape.cs
- DiscreteKeyFrames.cs
- SimplePropertyEntry.cs
- XmlUtil.cs
- XmlLoader.cs
- GeneralTransform.cs
- XmlSerializationReader.cs
- PointValueSerializer.cs
- CancellationScope.cs
- DataTableReader.cs
- CompModSwitches.cs
- SqlError.cs
- WebBrowserPermission.cs
- ProtocolImporter.cs
- DispatcherOperation.cs
- MasterPage.cs
- TextRangeAdaptor.cs
- PersonalizationProviderHelper.cs
- VirtualPathUtility.cs
- AuthorizationRuleCollection.cs
- SchemaCollectionCompiler.cs
- DBSchemaRow.cs
- XmlSchema.cs
- InteropBitmapSource.cs
- SelectionGlyphBase.cs
- DynamicPropertyReader.cs
- ConfigurationManagerInternalFactory.cs
- XomlCompilerError.cs
- Path.cs
- FixedSOMSemanticBox.cs
- TemplateBindingExtension.cs
- QuaternionConverter.cs
- CatalogPartCollection.cs
- ToolboxComponentsCreatedEventArgs.cs
- VarInfo.cs
- Bezier.cs
- TextEffect.cs
- DeclarativeConditionsCollection.cs
- WebPartDescription.cs
- State.cs
- EmptyCollection.cs
- Transform3D.cs
- StringCollection.cs
- TextLine.cs
- DecimalKeyFrameCollection.cs
- AdRotator.cs
- CommandField.cs
- Slider.cs
- TripleDESCryptoServiceProvider.cs
- OpCellTreeNode.cs
- FileDialog_Vista_Interop.cs
- DocumentSequence.cs
- ArgumentNullException.cs
- SendActivityDesigner.cs
- Connector.cs
- MembershipPasswordException.cs
- TextEditorSelection.cs
- WebPartManagerInternals.cs
- ToolStripGrip.cs
- ToolStripSystemRenderer.cs
- DataRecordObjectView.cs
- BulletChrome.cs
- ConnectionPointGlyph.cs
- UrlPropertyAttribute.cs
- EnumType.cs
- HtmlWindow.cs
- QueryCacheEntry.cs
- TextDecorationCollection.cs
- DataMemberListEditor.cs
- DataGridViewBindingCompleteEventArgs.cs
- AnimationLayer.cs