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
- AppDomainProtocolHandler.cs
- TagMapCollection.cs
- WS2007FederationHttpBindingElement.cs
- XmlSerializer.cs
- Visual.cs
- DisplayInformation.cs
- TraceEventCache.cs
- StrokeFIndices.cs
- PageThemeParser.cs
- Bits.cs
- TrustLevelCollection.cs
- TreeNodeBindingCollection.cs
- LocalIdKeyIdentifierClause.cs
- ActivationService.cs
- Expander.cs
- LinqDataSourceUpdateEventArgs.cs
- IntegrationExceptionEventArgs.cs
- ParallelTimeline.cs
- SystemFonts.cs
- IdentityHolder.cs
- GridViewColumn.cs
- PasswordTextNavigator.cs
- PerfService.cs
- ZipPackagePart.cs
- ContentElementAutomationPeer.cs
- connectionpool.cs
- PageTheme.cs
- InputScopeNameConverter.cs
- DispatcherEventArgs.cs
- ValidationService.cs
- TemplateBamlRecordReader.cs
- ResourcePermissionBase.cs
- Emitter.cs
- OleDbError.cs
- Triangle.cs
- PathTooLongException.cs
- XmlDataContract.cs
- QuaternionRotation3D.cs
- UseLicense.cs
- Exceptions.cs
- ToolTip.cs
- PeerApplicationLaunchInfo.cs
- QilLoop.cs
- OperationResponse.cs
- CombinedGeometry.cs
- HideDisabledControlAdapter.cs
- httpstaticobjectscollection.cs
- DatePickerTextBox.cs
- TextParagraphProperties.cs
- MetafileHeaderWmf.cs
- AxisAngleRotation3D.cs
- MultiBinding.cs
- SignedXml.cs
- DesignerActionGlyph.cs
- Point3DValueSerializer.cs
- ConfigurationElementProperty.cs
- Memoizer.cs
- GridPattern.cs
- GlobalizationSection.cs
- Normalization.cs
- PersianCalendar.cs
- RegistryPermission.cs
- BamlVersionHeader.cs
- EventLogEntryCollection.cs
- IndexedGlyphRun.cs
- Menu.cs
- NameObjectCollectionBase.cs
- ProvidersHelper.cs
- EncodingTable.cs
- DataStreams.cs
- GeometryDrawing.cs
- FormsAuthenticationModule.cs
- ObjectView.cs
- SystemIPInterfaceStatistics.cs
- RequestCachingSection.cs
- ArcSegment.cs
- NativeActivityMetadata.cs
- IndentedWriter.cs
- ApplicationInfo.cs
- DataBinder.cs
- TextWriter.cs
- AccessibleObject.cs
- HtmlInputHidden.cs
- CodeConstructor.cs
- HealthMonitoringSectionHelper.cs
- ToolboxItem.cs
- AppendHelper.cs
- NamespaceTable.cs
- RuleEngine.cs
- AsyncStreamReader.cs
- SplitterCancelEvent.cs
- NavigationWindowAutomationPeer.cs
- ASCIIEncoding.cs
- MarkupExtensionReturnTypeAttribute.cs
- StateItem.cs
- EmptyReadOnlyDictionaryInternal.cs
- FontNamesConverter.cs
- HtmlAnchor.cs
- Codec.cs
- MappedMetaModel.cs