Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / ObjectDataSourceStatusEventArgs.cs / 1 / ObjectDataSourceStatusEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// Represents data that is passed into an ObjectDataSourceMethodExecutedEventHandler delegate. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ObjectDataSourceStatusEventArgs : EventArgs { private object _returnValue; private IDictionary _outputParameters; private Exception _exception; private bool _exceptionHandled; private int _affectedRows = -1; ////// Creates a new instance of ObjectDataSourceStatusEventArgs. /// public ObjectDataSourceStatusEventArgs(object returnValue, IDictionary outputParameters) : this(returnValue, outputParameters, null) { } ////// Creates a new instance of ObjectDataSourceStatusEventArgs. /// public ObjectDataSourceStatusEventArgs(object returnValue, IDictionary outputParameters, Exception exception) : base() { _returnValue = returnValue; _outputParameters = outputParameters; _exception = exception; } ////// The output parameters of the method invocation. /// public IDictionary OutputParameters { get { return _outputParameters; } } ////// If an exception was thrown by the invoked method, 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; } } ////// The return value of the method invocation. /// public object ReturnValue { get { return _returnValue; } } ////// The number of rows affected by the operation. /// The default value is -1, which means that an unknown number /// of rows were affected. The user must set this value in the /// Deleted/Inserted/Updated/Selected event in order for the value /// to be available elsewhere. Typically the value would come either /// from the return value of the method or one of the output parameters. /// public int AffectedRows { get { return _affectedRows; } set { _affectedRows = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// Represents data that is passed into an ObjectDataSourceMethodExecutedEventHandler delegate. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ObjectDataSourceStatusEventArgs : EventArgs { private object _returnValue; private IDictionary _outputParameters; private Exception _exception; private bool _exceptionHandled; private int _affectedRows = -1; ////// Creates a new instance of ObjectDataSourceStatusEventArgs. /// public ObjectDataSourceStatusEventArgs(object returnValue, IDictionary outputParameters) : this(returnValue, outputParameters, null) { } ////// Creates a new instance of ObjectDataSourceStatusEventArgs. /// public ObjectDataSourceStatusEventArgs(object returnValue, IDictionary outputParameters, Exception exception) : base() { _returnValue = returnValue; _outputParameters = outputParameters; _exception = exception; } ////// The output parameters of the method invocation. /// public IDictionary OutputParameters { get { return _outputParameters; } } ////// If an exception was thrown by the invoked method, 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; } } ////// The return value of the method invocation. /// public object ReturnValue { get { return _returnValue; } } ////// The number of rows affected by the operation. /// The default value is -1, which means that an unknown number /// of rows were affected. The user must set this value in the /// Deleted/Inserted/Updated/Selected event in order for the value /// to be available elsewhere. Typically the value would come either /// from the return value of the method or one of the output parameters. /// public int AffectedRows { get { return _affectedRows; } set { _affectedRows = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FieldMetadata.cs
- CodeArrayCreateExpression.cs
- milrender.cs
- MetafileHeader.cs
- RectValueSerializer.cs
- WindowsFormsLinkLabel.cs
- FirstMatchCodeGroup.cs
- SiteMapHierarchicalDataSourceView.cs
- UnsafeNativeMethods.cs
- Menu.cs
- XPathNodeHelper.cs
- X509Certificate2Collection.cs
- ValidatingReaderNodeData.cs
- DBCommand.cs
- DataGridView.cs
- ViewBase.cs
- LambdaCompiler.Binary.cs
- SchemaType.cs
- TextMarkerSource.cs
- DataPagerField.cs
- RegexWriter.cs
- SQLStringStorage.cs
- Window.cs
- XmlTextWriter.cs
- XmlSecureResolver.cs
- RouteItem.cs
- CommonDialog.cs
- CompoundFileIOPermission.cs
- FactoryRecord.cs
- TextParagraphView.cs
- ConnectionManagementSection.cs
- SeekableReadStream.cs
- ColumnMapVisitor.cs
- ServiceOperationInfoTypeConverter.cs
- nulltextcontainer.cs
- DummyDataSource.cs
- DetectRunnableInstancesTask.cs
- SchemaTableOptionalColumn.cs
- StringValueSerializer.cs
- FileLoadException.cs
- SafeNativeMethods.cs
- securitycriticaldataClass.cs
- ServiceDescriptionImporter.cs
- CustomWebEventKey.cs
- HttpHandlerAction.cs
- WorkflowDefinitionContext.cs
- XmlCustomFormatter.cs
- Visual3D.cs
- XmlCDATASection.cs
- TraceFilter.cs
- CookieParameter.cs
- XmlDocumentType.cs
- TreeBuilderBamlTranslator.cs
- CssClassPropertyAttribute.cs
- WebPartManager.cs
- ColumnMapCopier.cs
- UIntPtr.cs
- IIS7UserPrincipal.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- ColorTransform.cs
- _StreamFramer.cs
- ParseNumbers.cs
- ScrollViewerAutomationPeer.cs
- WebControlAdapter.cs
- BufferedGraphicsManager.cs
- XamlReaderHelper.cs
- ConnectionPoint.cs
- TemplateApplicationHelper.cs
- SharingService.cs
- RequestTimeoutManager.cs
- ZipIOLocalFileDataDescriptor.cs
- Transform.cs
- Wildcard.cs
- XmlSchemaValidationException.cs
- MouseGestureConverter.cs
- ComboBoxAutomationPeer.cs
- ListComponentEditorPage.cs
- Internal.cs
- XmlQuerySequence.cs
- XmlSchemaAnnotation.cs
- Compilation.cs
- ProfessionalColors.cs
- FontFamilyValueSerializer.cs
- updatecommandorderer.cs
- DragEvent.cs
- Calendar.cs
- ResXBuildProvider.cs
- CategoryNameCollection.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ClientConfigurationSystem.cs
- MenuTracker.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- RoleService.cs
- ByteRangeDownloader.cs
- ActivityCodeDomSerializationManager.cs
- WebControlParameterProxy.cs
- HostedNamedPipeTransportManager.cs
- EventSinkHelperWriter.cs
- SafeNativeMethods.cs
- TextBoxRenderer.cs