Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- XmlDownloadManager.cs
- HttpModuleAction.cs
- ApplyImportsAction.cs
- safemediahandle.cs
- DataRowComparer.cs
- ConstrainedGroup.cs
- StatusBarPanel.cs
- ClientSideQueueItem.cs
- XNodeValidator.cs
- ToolStripItemRenderEventArgs.cs
- CaseInsensitiveHashCodeProvider.cs
- ValidatedControlConverter.cs
- EdgeModeValidation.cs
- DataGridItemEventArgs.cs
- HitTestWithGeometryDrawingContextWalker.cs
- WebPartMovingEventArgs.cs
- PropertyHelper.cs
- DBSchemaTable.cs
- VirtualizingStackPanel.cs
- BufferedStream.cs
- InstanceNameConverter.cs
- ControllableStoryboardAction.cs
- TraceSource.cs
- SoapFormatExtensions.cs
- StructuredTypeInfo.cs
- DeviceContext2.cs
- PerformanceCounterManager.cs
- DataGridViewBindingCompleteEventArgs.cs
- Grammar.cs
- OlePropertyStructs.cs
- InteropTrackingRecord.cs
- StrokeCollection.cs
- AppDomainShutdownMonitor.cs
- ClientRolePrincipal.cs
- ContextMenuAutomationPeer.cs
- OperatingSystemVersionCheck.cs
- File.cs
- DbConnectionPoolOptions.cs
- SmtpAuthenticationManager.cs
- cookiecontainer.cs
- BaseTransportHeaders.cs
- GC.cs
- DataGridViewTopRowAccessibleObject.cs
- XmlSchemaGroupRef.cs
- FormsAuthenticationModule.cs
- EditCommandColumn.cs
- ExtendedProperty.cs
- ToolStripDropDownClosedEventArgs.cs
- QilDataSource.cs
- SQLBytesStorage.cs
- HttpException.cs
- ApplicationTrust.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- DictionaryContent.cs
- SecurityPolicySection.cs
- Pool.cs
- MimeMapping.cs
- X509CertificateTrustedIssuerElement.cs
- LogStream.cs
- StorageAssociationTypeMapping.cs
- MarginsConverter.cs
- NavigationWindow.cs
- ProcessHost.cs
- WebPartConnectionsCloseVerb.cs
- PointConverter.cs
- OdbcStatementHandle.cs
- StateMachineAction.cs
- RepeaterItemCollection.cs
- HttpRequestCacheValidator.cs
- DocumentPageTextView.cs
- XamlFxTrace.cs
- PatternMatcher.cs
- PolyBezierSegmentFigureLogic.cs
- SQLDateTime.cs
- PrimitiveList.cs
- selecteditemcollection.cs
- DataTableClearEvent.cs
- Oid.cs
- PartDesigner.cs
- BitmapEffectInput.cs
- WebPartCancelEventArgs.cs
- CLRBindingWorker.cs
- ControlUtil.cs
- SubpageParaClient.cs
- CallSiteOps.cs
- NativeMethods.cs
- PointUtil.cs
- LogLogRecord.cs
- EntryPointNotFoundException.cs
- HyperLinkColumn.cs
- ColorDialog.cs
- ModelTypeConverter.cs
- RemoteCryptoTokenProvider.cs
- MapPathBasedVirtualPathProvider.cs
- SqlClientWrapperSmiStream.cs
- ListViewDataItem.cs
- RequestCacheEntry.cs
- MultipleViewProviderWrapper.cs
- DataColumnMappingCollection.cs
- Literal.cs