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
- WebPartEditVerb.cs
- TextCharacters.cs
- MsdtcClusterUtils.cs
- ErrorFormatterPage.cs
- UserNameSecurityTokenParameters.cs
- ToolStripSettings.cs
- OleDbException.cs
- ConstructorBuilder.cs
- ChannelDispatcherCollection.cs
- MaterialCollection.cs
- OrderingInfo.cs
- LockCookie.cs
- TextDecorationUnitValidation.cs
- AsymmetricKeyExchangeFormatter.cs
- ViewManagerAttribute.cs
- CodeMemberField.cs
- WebControlToolBoxItem.cs
- DataSourceHelper.cs
- ChildDocumentBlock.cs
- DataServiceRequest.cs
- SamlAdvice.cs
- Clause.cs
- DBSchemaTable.cs
- CharConverter.cs
- Configuration.cs
- PtsHost.cs
- EmbeddedMailObjectsCollection.cs
- Debug.cs
- DnsEndPoint.cs
- SqlExpressionNullability.cs
- TextParagraphProperties.cs
- DependencyPropertyKey.cs
- CloseCollectionAsyncResult.cs
- ValidateNames.cs
- SafeWaitHandle.cs
- SetterBase.cs
- URIFormatException.cs
- ProcessHostMapPath.cs
- CodeDomExtensionMethods.cs
- HttpInputStream.cs
- NameValuePair.cs
- ResourceReferenceKeyNotFoundException.cs
- CurrencyWrapper.cs
- XmlAtomErrorReader.cs
- DesignTimeXamlWriter.cs
- latinshape.cs
- SplitterEvent.cs
- EntityDataSourceDesignerHelper.cs
- DesignerLabelAdapter.cs
- ContextMarshalException.cs
- InstalledFontCollection.cs
- ErrorFormatterPage.cs
- TileBrush.cs
- Overlapped.cs
- JsonReaderWriterFactory.cs
- HandleExceptionArgs.cs
- WebPageTraceListener.cs
- SmtpClient.cs
- DataComponentMethodGenerator.cs
- SafeMILHandle.cs
- UpdatePanelTrigger.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- ParseHttpDate.cs
- LabelAutomationPeer.cs
- XmlDataSource.cs
- Path.cs
- XmlParser.cs
- ProxyWebPart.cs
- FactoryRecord.cs
- MenuItemBinding.cs
- ActiveDesignSurfaceEvent.cs
- VectorKeyFrameCollection.cs
- ZipIOLocalFileHeader.cs
- HttpStreamFormatter.cs
- ActivityTypeCodeDomSerializer.cs
- WebExceptionStatus.cs
- GcHandle.cs
- KeyMatchBuilder.cs
- ObjectToModelValueConverter.cs
- QuotedStringFormatReader.cs
- BadImageFormatException.cs
- StyleModeStack.cs
- ContainerParaClient.cs
- DirectoryInfo.cs
- SqlDataSourceSelectingEventArgs.cs
- ApplicationContext.cs
- XmlEventCache.cs
- Type.cs
- UIntPtr.cs
- SwitchLevelAttribute.cs
- ToolBarPanel.cs
- ClaimComparer.cs
- UiaCoreApi.cs
- ResourceProviderFactory.cs
- RulePatternOps.cs
- DataObjectAttribute.cs
- DataServiceBehavior.cs
- TransportConfigurationTypeElementCollection.cs
- DataRecordObjectView.cs
- InheritanceContextChangedEventManager.cs