Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / ObjectDataSourceStatusEventArgs.cs / 1305376 / ObjectDataSourceStatusEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// Represents data that is passed into an ObjectDataSourceMethodExecutedEventHandler delegate. /// 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. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; ////// Represents data that is passed into an ObjectDataSourceMethodExecutedEventHandler delegate. /// 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Documentation.cs
- ObjectResult.cs
- DynamicRouteExpression.cs
- CodeTypeReferenceExpression.cs
- TopClause.cs
- StdValidatorsAndConverters.cs
- XmlSchemaParticle.cs
- LogicalChannel.cs
- UIElement.cs
- PolyLineSegmentFigureLogic.cs
- TdsParserStaticMethods.cs
- GenericTypeParameterBuilder.cs
- BamlTreeNode.cs
- DataGridViewCellValueEventArgs.cs
- CodeConstructor.cs
- TdsRecordBufferSetter.cs
- PageParser.cs
- AnnotationMap.cs
- SafeArrayTypeMismatchException.cs
- XslCompiledTransform.cs
- SQLDecimalStorage.cs
- PointIndependentAnimationStorage.cs
- ViewValidator.cs
- ReadOnlyDataSourceView.cs
- StdRegProviderWrapper.cs
- VBIdentifierDesigner.xaml.cs
- MultiBindingExpression.cs
- EncryptedType.cs
- SQLConvert.cs
- WindowsListViewGroup.cs
- WorkflowInstanceExtensionProvider.cs
- GradientStop.cs
- RegistryConfigurationProvider.cs
- DataServiceExpressionVisitor.cs
- AxWrapperGen.cs
- StorageBasedPackageProperties.cs
- SortKey.cs
- TemplateXamlParser.cs
- DataGridViewRowsRemovedEventArgs.cs
- ToolbarAUtomationPeer.cs
- PathFigureCollectionValueSerializer.cs
- CallbackHandler.cs
- AnimatedTypeHelpers.cs
- PackagePart.cs
- SessionIDManager.cs
- StrongNameUtility.cs
- ValidationRuleCollection.cs
- SchemaObjectWriter.cs
- DataGridViewIntLinkedList.cs
- TempFiles.cs
- ContentPosition.cs
- FileStream.cs
- EndpointBehaviorElement.cs
- ClientRoleProvider.cs
- QEncodedStream.cs
- BulletedList.cs
- TextFormattingConverter.cs
- CopyOnWriteList.cs
- RawUIStateInputReport.cs
- EventProxy.cs
- BinaryObjectWriter.cs
- ChunkedMemoryStream.cs
- PageCopyCount.cs
- DataGridItemEventArgs.cs
- COM2AboutBoxPropertyDescriptor.cs
- CqlErrorHelper.cs
- KeyValueSerializer.cs
- NameValuePermission.cs
- ScrollData.cs
- Converter.cs
- EdmItemError.cs
- AutomationPropertyInfo.cs
- OperatingSystem.cs
- GeneralTransform3D.cs
- StreamGeometry.cs
- CompressedStack.cs
- BackgroundWorker.cs
- ActivityCodeDomReferenceService.cs
- FixedSOMImage.cs
- EventsTab.cs
- XmlNotation.cs
- GroupQuery.cs
- PropertyCollection.cs
- XmlDataSource.cs
- CompositeCollection.cs
- FixedTextSelectionProcessor.cs
- AbstractSvcMapFileLoader.cs
- DbParameterHelper.cs
- WebContext.cs
- UnsafeNativeMethodsTablet.cs
- Pkcs9Attribute.cs
- ProfileServiceManager.cs
- Encoder.cs
- ActivationWorker.cs
- SplayTreeNode.cs
- CatalogPartChrome.cs
- RegexGroupCollection.cs
- LowerCaseStringConverter.cs
- XamlSerializerUtil.cs
- WebPartTransformerCollection.cs