Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / SqlDataSourceStatusEventArgs.cs / 1 / SqlDataSourceStatusEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections.Specialized; using System.Data; using System.Data.Common; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SqlDataSourceStatusEventArgs : EventArgs { private DbCommand _command; private Exception _exception; private bool _exceptionHandled; private int _affectedRows; public SqlDataSourceStatusEventArgs(DbCommand command, int affectedRows, Exception exception) : base() { _command = command; _affectedRows = affectedRows; _exception = exception; } public int AffectedRows { get { return _affectedRows; } } public DbCommand Command { get { return _command; } } ////// If an exception was thrown by the command, this property will contain the exception. /// If there was no exception, the value will be null. /// public Exception Exception { get { return _exception; } } ////// If you wish to handle the exception using your own logic, set this value to true for it to be ignored by the control. /// If an exception was thrown and this value remains false, the exception will be re-thrown by the control. /// public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections.Specialized; using System.Data; using System.Data.Common; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class SqlDataSourceStatusEventArgs : EventArgs { private DbCommand _command; private Exception _exception; private bool _exceptionHandled; private int _affectedRows; public SqlDataSourceStatusEventArgs(DbCommand command, int affectedRows, Exception exception) : base() { _command = command; _affectedRows = affectedRows; _exception = exception; } public int AffectedRows { get { return _affectedRows; } } public DbCommand Command { get { return _command; } } ////// If an exception was thrown by the command, this property will contain the exception. /// If there was no exception, the value will be null. /// public Exception Exception { get { return _exception; } } ////// If you wish to handle the exception using your own logic, set this value to true for it to be ignored by the control. /// If an exception was thrown and this value remains false, the exception will be re-thrown by the control. /// public bool ExceptionHandled { get { return _exceptionHandled; } set { _exceptionHandled = value; } } } } // 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
- PageSetupDialog.cs
- DynamicPropertyHolder.cs
- webbrowsersite.cs
- DataGridToolTip.cs
- DisplayInformation.cs
- odbcmetadatacollectionnames.cs
- returneventsaver.cs
- DashStyles.cs
- UpdateException.cs
- AndCondition.cs
- ClientOptions.cs
- ErrorProvider.cs
- XmlLinkedNode.cs
- sqlinternaltransaction.cs
- GridViewAutoFormat.cs
- MimeReflector.cs
- DependsOnAttribute.cs
- MessageBuilder.cs
- ListBox.cs
- CatalogPartCollection.cs
- TextEditorTables.cs
- ObjectFullSpanRewriter.cs
- StringDictionary.cs
- CustomAttribute.cs
- SynchronizationValidator.cs
- X509Utils.cs
- DiscardableAttribute.cs
- ScrollableControl.cs
- JournalNavigationScope.cs
- BypassElementCollection.cs
- MaskedTextBoxDesignerActionList.cs
- SharedDp.cs
- _BaseOverlappedAsyncResult.cs
- MediaContext.cs
- TableRow.cs
- InternalConfigEventArgs.cs
- ImageListDesigner.cs
- unsafeIndexingFilterStream.cs
- PeerTransportSecuritySettings.cs
- CharAnimationBase.cs
- RefExpr.cs
- DesignerSerializationVisibilityAttribute.cs
- StateValidator.cs
- TagPrefixInfo.cs
- SelectionProviderWrapper.cs
- NamedPermissionSet.cs
- CalendarTable.cs
- XmlSiteMapProvider.cs
- Stream.cs
- AtomServiceDocumentSerializer.cs
- Rfc4050KeyFormatter.cs
- DbConnectionStringBuilder.cs
- DispatcherHooks.cs
- DataSourceControlBuilder.cs
- MergeFailedEvent.cs
- DependencyPropertyKey.cs
- ParserHooks.cs
- ImagingCache.cs
- KnownIds.cs
- PropertyEntry.cs
- FixedFindEngine.cs
- SignerInfo.cs
- MasterPageParser.cs
- XmlQueryCardinality.cs
- UnsignedPublishLicense.cs
- SevenBitStream.cs
- CompoundFileDeflateTransform.cs
- InputScopeConverter.cs
- MinMaxParagraphWidth.cs
- DataSourceProvider.cs
- VersionConverter.cs
- NumericExpr.cs
- DynamicPropertyReader.cs
- AsymmetricAlgorithm.cs
- ListContractAdapter.cs
- URLAttribute.cs
- FunctionDetailsReader.cs
- RegexStringValidator.cs
- Tracking.cs
- AttachedAnnotationChangedEventArgs.cs
- WarningException.cs
- IndexerNameAttribute.cs
- Size3D.cs
- XmlNotation.cs
- SoapObjectWriter.cs
- NullableLongSumAggregationOperator.cs
- ForeignKeyFactory.cs
- XmlReaderSettings.cs
- ToolboxBitmapAttribute.cs
- SqlConnectionPoolGroupProviderInfo.cs
- SelectionPatternIdentifiers.cs
- AssociationType.cs
- SolidColorBrush.cs
- documentsequencetextcontainer.cs
- DependencyObjectProvider.cs
- SerializableReadOnlyDictionary.cs
- DefaultIfEmptyQueryOperator.cs
- MeshGeometry3D.cs
- GridViewHeaderRowPresenter.cs
- XmlTypeMapping.cs