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
- DocumentScope.cs
- ViewValidator.cs
- AmbiguousMatchException.cs
- UInt16Storage.cs
- RichTextBox.cs
- DataColumn.cs
- DecimalConstantAttribute.cs
- SmiEventStream.cs
- ActivityExecutor.cs
- ManipulationPivot.cs
- FillErrorEventArgs.cs
- ChildDocumentBlock.cs
- DirectoryRedirect.cs
- infer.cs
- ModelVisual3D.cs
- UnmanagedMarshal.cs
- ToolBarButtonClickEvent.cs
- ResetableIterator.cs
- Memoizer.cs
- IDReferencePropertyAttribute.cs
- DescriptionAttribute.cs
- XmlEntityReference.cs
- ArrayExtension.cs
- CmsUtils.cs
- SimpleWebHandlerParser.cs
- MetaType.cs
- ExecutionTracker.cs
- CodeSubDirectoriesCollection.cs
- PropertyItem.cs
- wgx_commands.cs
- ArrangedElementCollection.cs
- WebPartTransformer.cs
- LoginCancelEventArgs.cs
- ObjectRef.cs
- GcSettings.cs
- DesignerListAdapter.cs
- PolyLineSegment.cs
- oledbmetadatacolumnnames.cs
- TextElementEnumerator.cs
- TemplateXamlParser.cs
- DifferencingCollection.cs
- WindowsBrush.cs
- DataGridAutomationPeer.cs
- HostUtils.cs
- ListDataHelper.cs
- ItemPager.cs
- IntSecurity.cs
- CodeCatchClause.cs
- Matrix3D.cs
- _SingleItemRequestCache.cs
- MatrixConverter.cs
- QueryTreeBuilder.cs
- OdbcEnvironment.cs
- Properties.cs
- XmlSchemaGroup.cs
- LinqTreeNodeEvaluator.cs
- SQlBooleanStorage.cs
- ElementAction.cs
- TransactionManager.cs
- ColumnProvider.cs
- HighlightVisual.cs
- ComponentChangedEvent.cs
- FileDetails.cs
- DefinitionProperties.cs
- SapiInterop.cs
- DesignerAdRotatorAdapter.cs
- ListBindingConverter.cs
- XmlSchemaSimpleType.cs
- ExclusiveCanonicalizationTransform.cs
- TrustManagerPromptUI.cs
- RemoteHelper.cs
- WebServiceErrorEvent.cs
- ReceiveReply.cs
- ConfigPathUtility.cs
- TextParaLineResult.cs
- CalendarDataBindingHandler.cs
- CodeCommentStatement.cs
- ValidatorCollection.cs
- Pens.cs
- ProfessionalColorTable.cs
- StructuredTypeEmitter.cs
- SoapTypeAttribute.cs
- DataSvcMapFileSerializer.cs
- RootAction.cs
- TreePrinter.cs
- CodeSnippetCompileUnit.cs
- InvalidAsynchronousStateException.cs
- UidManager.cs
- TabControlCancelEvent.cs
- XmlNullResolver.cs
- ImageClickEventArgs.cs
- WizardStepBase.cs
- DetailsView.cs
- ListItemsCollectionEditor.cs
- SamlAuthenticationClaimResource.cs
- SqlDataReader.cs
- MultipleViewPattern.cs
- Attributes.cs
- RequiredAttributeAttribute.cs
- DocumentsTrace.cs