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
- ActivityInterfaces.cs
- Instrumentation.cs
- OdbcDataReader.cs
- XpsFont.cs
- XmlReaderDelegator.cs
- HierarchicalDataSourceConverter.cs
- _AuthenticationState.cs
- UnsafeNativeMethods.cs
- EdmComplexPropertyAttribute.cs
- SystemIcmpV4Statistics.cs
- UserNameSecurityTokenAuthenticator.cs
- BindUriHelper.cs
- CookielessHelper.cs
- X509ChainPolicy.cs
- HtmlMeta.cs
- TreeChangeInfo.cs
- Polyline.cs
- PrintPreviewDialog.cs
- SizeAnimationBase.cs
- ClientScriptManager.cs
- CompositeFontInfo.cs
- StringBuilder.cs
- PropertiesTab.cs
- versioninfo.cs
- WindowsListViewItemCheckBox.cs
- BuildManagerHost.cs
- FontStyle.cs
- LazyInitializer.cs
- StandardTransformFactory.cs
- Atom10FormatterFactory.cs
- RenderCapability.cs
- ListSourceHelper.cs
- WindowsProgressbar.cs
- XmlText.cs
- RichTextBoxDesigner.cs
- AutomationPatternInfo.cs
- TrayIconDesigner.cs
- ImageCodecInfo.cs
- FtpWebResponse.cs
- X509Utils.cs
- PermissionSetEnumerator.cs
- GPStream.cs
- CompareValidator.cs
- BasePattern.cs
- MimePart.cs
- DBCommandBuilder.cs
- SqlError.cs
- PageMediaSize.cs
- CustomValidator.cs
- RemoteWebConfigurationHostServer.cs
- TableLayoutPanel.cs
- UnsafeNativeMethods.cs
- DataTableClearEvent.cs
- ShaderEffect.cs
- DispatcherProcessingDisabled.cs
- WindowsSolidBrush.cs
- BooleanAnimationBase.cs
- OdbcRowUpdatingEvent.cs
- CapabilitiesRule.cs
- RegexTree.cs
- ProjectionPruner.cs
- TraceContextRecord.cs
- SynchronizedCollection.cs
- HyperLinkColumn.cs
- SystemIPInterfaceStatistics.cs
- DelegateArgument.cs
- UnsafeNativeMethodsCLR.cs
- TemplateField.cs
- InfoCardConstants.cs
- FontStyleConverter.cs
- ElementAction.cs
- Preprocessor.cs
- SetterBaseCollection.cs
- New.cs
- MetadataUtilsSmi.cs
- System.Data_BID.cs
- DataGridPagerStyle.cs
- MbpInfo.cs
- sqlpipe.cs
- GroupBoxDesigner.cs
- LongPath.cs
- ExpandableObjectConverter.cs
- RegexParser.cs
- OleDbCommand.cs
- SourceChangedEventArgs.cs
- WrapPanel.cs
- InstanceNameConverter.cs
- NetNamedPipeSecurity.cs
- NamespaceCollection.cs
- NotCondition.cs
- SettingsPropertyCollection.cs
- AppSettingsReader.cs
- TypeDependencyAttribute.cs
- DispatchChannelSink.cs
- SmiMetaData.cs
- ThrowHelper.cs
- InstanceView.cs
- SmtpTransport.cs
- UnauthorizedAccessException.cs
- DbReferenceCollection.cs