Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWebControls / System / Data / WebControls / EntityDataSourceChangedEventArgs.cs / 1 / EntityDataSourceChangedEventArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner objsdev //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Objects; namespace System.Web.UI.WebControls { public class EntityDataSourceChangedEventArgs : EventArgs { private readonly ObjectContext _context; private readonly Exception _exception = null; private bool _exceptionHandled = false; private readonly object _entity = null; internal EntityDataSourceChangedEventArgs(ObjectContext context, object entity) { _context = context; _entity = entity; } internal EntityDataSourceChangedEventArgs(Exception exception) { _exception = exception; } public Exception Exception { get { return _exception; } } public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } public object Entity { get { return _entity; } } public ObjectContext Context { get { return _context; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner objsdev //--------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Objects; namespace System.Web.UI.WebControls { public class EntityDataSourceChangedEventArgs : EventArgs { private readonly ObjectContext _context; private readonly Exception _exception = null; private bool _exceptionHandled = false; private readonly object _entity = null; internal EntityDataSourceChangedEventArgs(ObjectContext context, object entity) { _context = context; _entity = entity; } internal EntityDataSourceChangedEventArgs(Exception exception) { _exception = exception; } public Exception Exception { get { return _exception; } } public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } public object Entity { get { return _entity; } } public ObjectContext Context { get { return _context; } } } } // 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
- XmlIncludeAttribute.cs
- TypedTableBase.cs
- XmlILIndex.cs
- DbParameterCollectionHelper.cs
- ObfuscationAttribute.cs
- CollectionView.cs
- ConstrainedDataObject.cs
- ClientData.cs
- XmlIncludeAttribute.cs
- PostBackTrigger.cs
- RowType.cs
- SimpleType.cs
- SpecialNameAttribute.cs
- WebHttpBinding.cs
- GenericsInstances.cs
- CodeTypeReferenceSerializer.cs
- IsolationInterop.cs
- MetadataConversionError.cs
- XmlnsDictionary.cs
- EntitySetBase.cs
- OleTxTransactionInfo.cs
- PropertyInfoSet.cs
- CodeNamespaceCollection.cs
- ImplicitInputBrush.cs
- AuthenticationModulesSection.cs
- SemaphoreSecurity.cs
- IntegrationExceptionEventArgs.cs
- ComEventsSink.cs
- UTF8Encoding.cs
- SafeUserTokenHandle.cs
- _SSPIWrapper.cs
- XmlQualifiedName.cs
- ComplexPropertyEntry.cs
- AliasGenerator.cs
- StandardToolWindows.cs
- DropDownButton.cs
- ConnectionProviderAttribute.cs
- Array.cs
- Transform3DGroup.cs
- SoapIgnoreAttribute.cs
- ToolBar.cs
- XmlSchemaSubstitutionGroup.cs
- SecurityPolicySection.cs
- ImageBrush.cs
- AuthorizationSection.cs
- RuntimeCompatibilityAttribute.cs
- RegexGroupCollection.cs
- XamlRtfConverter.cs
- ReceiveContextCollection.cs
- AtomServiceDocumentSerializer.cs
- ClientBuildManagerCallback.cs
- HandoffBehavior.cs
- ObjectItemCachedAssemblyLoader.cs
- ErrorBehavior.cs
- ConfigXmlDocument.cs
- PolicyManager.cs
- Utils.cs
- SystemResourceHost.cs
- PerformanceCounterCategory.cs
- ExpressionBuilder.cs
- X500Name.cs
- PlainXmlDeserializer.cs
- TextTreeTextNode.cs
- QilName.cs
- Debug.cs
- Lasso.cs
- Focus.cs
- FlowDocumentView.cs
- OpenFileDialog.cs
- PersistenceTypeAttribute.cs
- QuaternionValueSerializer.cs
- SurrogateEncoder.cs
- FamilyTypefaceCollection.cs
- ASCIIEncoding.cs
- XmlSerializationReader.cs
- _BaseOverlappedAsyncResult.cs
- TextBoxBase.cs
- SevenBitStream.cs
- MouseBinding.cs
- dataobject.cs
- DictationGrammar.cs
- ClipboardProcessor.cs
- EditingScope.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SyntaxCheck.cs
- StrongNamePublicKeyBlob.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- SerialPort.cs
- LogStream.cs
- XamlToRtfWriter.cs
- GZipStream.cs
- FrameworkElementFactory.cs
- XmlSchemaSet.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- RijndaelManagedTransform.cs
- DynamicContractTypeBuilder.cs
- Attributes.cs
- RelationshipEndMember.cs
- LinkedList.cs
- HitTestWithGeometryDrawingContextWalker.cs