Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpModuleActionCollection.cs
- XmlSerializerSection.cs
- RowsCopiedEventArgs.cs
- StatusBar.cs
- AnimationClock.cs
- ConfigUtil.cs
- EdmError.cs
- ByteStream.cs
- MetadataCacheItem.cs
- PropertyGeneratedEventArgs.cs
- TabletDevice.cs
- LocalBuilder.cs
- PerspectiveCamera.cs
- ApplicationSettingsBase.cs
- Matrix3D.cs
- EdmComplexPropertyAttribute.cs
- TimeSpanMinutesConverter.cs
- StringValueSerializer.cs
- Substitution.cs
- WebContext.cs
- FrameworkEventSource.cs
- SqlBulkCopyColumnMapping.cs
- XmlWriter.cs
- FieldAccessException.cs
- SecurityTokenAuthenticator.cs
- ModuleBuilder.cs
- NonBatchDirectoryCompiler.cs
- ColumnResizeUndoUnit.cs
- XsdBuildProvider.cs
- UIElement3DAutomationPeer.cs
- IndicShape.cs
- TypeToken.cs
- ReflectEventDescriptor.cs
- ObjectSpanRewriter.cs
- BitmapFrame.cs
- ParameterSubsegment.cs
- FontDriver.cs
- StatusBarItem.cs
- DataRowChangeEvent.cs
- ConfigPathUtility.cs
- PathSegmentCollection.cs
- StaticTextPointer.cs
- XmlSchemaObjectTable.cs
- EditorZoneBase.cs
- TypeValidationEventArgs.cs
- ToolStripItemImageRenderEventArgs.cs
- TransformBlockRequest.cs
- WindowsStatic.cs
- DesigntimeLicenseContext.cs
- EntityTypeEmitter.cs
- DataServiceHost.cs
- RelativeSource.cs
- EncryptedKey.cs
- UnicastIPAddressInformationCollection.cs
- StyleHelper.cs
- ProgressBarAutomationPeer.cs
- BufferBuilder.cs
- UserPreferenceChangingEventArgs.cs
- FolderBrowserDialog.cs
- SimpleFieldTemplateUserControl.cs
- DomainConstraint.cs
- XmlArrayItemAttribute.cs
- TraceLevelHelper.cs
- Stacktrace.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- MatrixKeyFrameCollection.cs
- DropDownButton.cs
- Model3DCollection.cs
- FixedSchema.cs
- Pair.cs
- WeakEventTable.cs
- EventToken.cs
- SRGSCompiler.cs
- ZipFileInfoCollection.cs
- RealizationDrawingContextWalker.cs
- FieldBuilder.cs
- XmlSerializationReader.cs
- XmlReflectionMember.cs
- ElementNotEnabledException.cs
- SspiNegotiationTokenProvider.cs
- WindowsMenu.cs
- KeySplineConverter.cs
- ContentFilePart.cs
- CustomAssemblyResolver.cs
- KeyGestureConverter.cs
- EntityDataSourceView.cs
- ComponentResourceKeyConverter.cs
- SocketElement.cs
- ExpressionVisitor.cs
- Membership.cs
- InstanceView.cs
- SynchronizationContext.cs
- Utils.cs
- IdentityReference.cs
- PageTrueTypeFont.cs
- EmptyElement.cs
- FormViewDeletedEventArgs.cs
- PiiTraceSource.cs
- X509AsymmetricSecurityKey.cs
- HandoffBehavior.cs