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
- PagerSettings.cs
- CodeAssignStatement.cs
- MultiView.cs
- BorderSidesEditor.cs
- PropertySourceInfo.cs
- GraphicsPath.cs
- ConfigurationManagerInternalFactory.cs
- WebControl.cs
- WeakRefEnumerator.cs
- SHA1Managed.cs
- GraphicsPathIterator.cs
- IndexedGlyphRun.cs
- XomlCompilerResults.cs
- CssTextWriter.cs
- HttpListenerContext.cs
- BindingValueChangedEventArgs.cs
- TextSimpleMarkerProperties.cs
- ConfigXmlCDataSection.cs
- ItemCollection.cs
- PrivilegeNotHeldException.cs
- basevalidator.cs
- TableRow.cs
- DetailsViewDeleteEventArgs.cs
- EmptyControlCollection.cs
- DataKey.cs
- TextEffectCollection.cs
- ToolStrip.cs
- InvalidPropValue.cs
- DefinitionUpdate.cs
- FontSource.cs
- BitStack.cs
- CornerRadiusConverter.cs
- CodeCatchClause.cs
- CounterCreationDataConverter.cs
- MemberAccessException.cs
- ResourceSet.cs
- PopupControlService.cs
- NameTable.cs
- EnumMember.cs
- WizardStepBase.cs
- OracleConnectionFactory.cs
- TableCellCollection.cs
- FormsAuthentication.cs
- CompilationSection.cs
- User.cs
- RegionInfo.cs
- SystemUnicastIPAddressInformation.cs
- DataGridViewCellStyleChangedEventArgs.cs
- DataServiceException.cs
- IndexingContentUnit.cs
- CatalogPartChrome.cs
- DeferredElementTreeState.cs
- ManagementObjectSearcher.cs
- RbTree.cs
- IndexedEnumerable.cs
- HtmlTitle.cs
- PhysicalAddress.cs
- HttpPostedFile.cs
- ColumnCollection.cs
- ItemsPanelTemplate.cs
- COM2Enum.cs
- TypeElementCollection.cs
- SecurityPolicySection.cs
- Profiler.cs
- oledbmetadatacolumnnames.cs
- OpCellTreeNode.cs
- DragDropManager.cs
- ToolStripItemImageRenderEventArgs.cs
- BaseTemplateBuildProvider.cs
- QueuePathDialog.cs
- HandleRef.cs
- InputLangChangeEvent.cs
- BufferModesCollection.cs
- ServiceHttpHandlerFactory.cs
- UrlPath.cs
- Encoder.cs
- ExpressionUtilities.cs
- MulticastOption.cs
- VScrollProperties.cs
- ClientOptions.cs
- ToolBar.cs
- MediaContextNotificationWindow.cs
- ToolStripProgressBar.cs
- Pair.cs
- CqlWriter.cs
- ReadOnlyDictionary.cs
- SurrogateSelector.cs
- log.cs
- CategoryAttribute.cs
- BitmapEffect.cs
- StructuralComparisons.cs
- WindowPatternIdentifiers.cs
- SqlDataSourceEnumerator.cs
- GeometryDrawing.cs
- altserialization.cs
- TraceHwndHost.cs
- EntityViewGenerationConstants.cs
- ProxyWebPartConnectionCollection.cs
- PerformanceCounter.cs
- StreamSecurityUpgradeInitiator.cs