Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- HttpFormatExtensions.cs
- ResourceReferenceKeyNotFoundException.cs
- Monitor.cs
- XmlReflectionImporter.cs
- FieldTemplateFactory.cs
- CodeNamespace.cs
- RepeatButtonAutomationPeer.cs
- XmlSortKey.cs
- ResponseBodyWriter.cs
- DataControlLinkButton.cs
- TextOptionsInternal.cs
- DataMember.cs
- mediaeventargs.cs
- DefaultDialogButtons.cs
- CalendarAutoFormatDialog.cs
- FixedSOMFixedBlock.cs
- LoginDesigner.cs
- SafeFileMappingHandle.cs
- StubHelpers.cs
- FileInfo.cs
- safesecurityhelperavalon.cs
- TypeTypeConverter.cs
- WebConfigurationManager.cs
- DataGridViewTextBoxEditingControl.cs
- CounterCreationDataConverter.cs
- PrintDialogException.cs
- WindowsScroll.cs
- NavigationCommands.cs
- FilterException.cs
- DbFunctionCommandTree.cs
- safelink.cs
- sqlpipe.cs
- PointAnimationUsingPath.cs
- ServicesUtilities.cs
- QilCloneVisitor.cs
- EventDescriptor.cs
- InputProcessorProfilesLoader.cs
- DataSourceHelper.cs
- ParserHooks.cs
- RowBinding.cs
- ProviderConnectionPointCollection.cs
- WindowsPrincipal.cs
- LocationUpdates.cs
- ResXFileRef.cs
- DecoderFallbackWithFailureFlag.cs
- MainMenu.cs
- Expression.cs
- DragCompletedEventArgs.cs
- HttpResponseHeader.cs
- SByte.cs
- DataViewSetting.cs
- ClientTargetCollection.cs
- ParsedAttributeCollection.cs
- ByteArrayHelperWithString.cs
- SlotInfo.cs
- PersistChildrenAttribute.cs
- Attributes.cs
- SiteOfOriginContainer.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- XComponentModel.cs
- SystemIcmpV6Statistics.cs
- IssuedTokenClientElement.cs
- SystemIPv6InterfaceProperties.cs
- EventSinkActivity.cs
- ProfileGroupSettings.cs
- StylusPointDescription.cs
- ListControl.cs
- ExpandCollapseProviderWrapper.cs
- CredentialCache.cs
- ControlUtil.cs
- AffineTransform3D.cs
- PropertyMappingExceptionEventArgs.cs
- XmlSignatureManifest.cs
- NamespaceList.cs
- Rotation3D.cs
- PreviousTrackingServiceAttribute.cs
- Sql8ConformanceChecker.cs
- Type.cs
- Hash.cs
- ClientSettingsSection.cs
- DocumentGrid.cs
- ThicknessKeyFrameCollection.cs
- GeometryDrawing.cs
- CodeConstructor.cs
- NumberFormatter.cs
- TrackPoint.cs
- AvTrace.cs
- KeyTimeConverter.cs
- cookie.cs
- BamlTreeUpdater.cs
- BackStopAuthenticationModule.cs
- __Error.cs
- ValueQuery.cs
- securitymgrsite.cs
- MediaElement.cs
- DocumentXPathNavigator.cs
- ConfigurationStrings.cs
- MDIClient.cs
- AQNBuilder.cs
- EventManager.cs