Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SynchronizingStream.cs
- WebPartVerbCollection.cs
- CodeStatementCollection.cs
- Range.cs
- StringAnimationUsingKeyFrames.cs
- FontStretchConverter.cs
- EntityTypeEmitter.cs
- DataServiceQueryOfT.cs
- OutgoingWebResponseContext.cs
- DirectoryNotFoundException.cs
- GiveFeedbackEventArgs.cs
- SafeRightsManagementEnvironmentHandle.cs
- ClientConfigurationSystem.cs
- Privilege.cs
- ConfigurationPropertyCollection.cs
- TextEditorSpelling.cs
- MimeFormatExtensions.cs
- OpacityConverter.cs
- SoapAttributes.cs
- VisualTreeUtils.cs
- RunWorkerCompletedEventArgs.cs
- NonClientArea.cs
- NativeRecognizer.cs
- ACE.cs
- Range.cs
- DataBindingCollectionEditor.cs
- ValueSerializer.cs
- hresults.cs
- CssTextWriter.cs
- CommonDialog.cs
- OdbcConnectionFactory.cs
- Span.cs
- WebPartVerb.cs
- Stylesheet.cs
- ParameterExpression.cs
- WebPartTracker.cs
- AppSettingsSection.cs
- SharedPersonalizationStateInfo.cs
- Nullable.cs
- FormatterServicesNoSerializableCheck.cs
- DataGridViewSelectedCellCollection.cs
- TaiwanCalendar.cs
- TextEffect.cs
- StaticSiteMapProvider.cs
- ImageAutomationPeer.cs
- Regex.cs
- TableLayoutPanelCellPosition.cs
- HostingEnvironmentException.cs
- FileSecurity.cs
- XmlArrayAttribute.cs
- UDPClient.cs
- TabPage.cs
- TextOnlyOutput.cs
- KeyGestureValueSerializer.cs
- ViewGenerator.cs
- QuinticEase.cs
- safelink.cs
- MergePropertyDescriptor.cs
- TablePattern.cs
- CompilerGeneratedAttribute.cs
- DataPagerField.cs
- GroupBox.cs
- RevocationPoint.cs
- CategoryNameCollection.cs
- BevelBitmapEffect.cs
- WindowsTreeView.cs
- WorkflowInstance.cs
- base64Transforms.cs
- XmlReflectionImporter.cs
- FormatPage.cs
- DeflateStream.cs
- InlineObject.cs
- SessionPageStatePersister.cs
- WebPartCatalogAddVerb.cs
- SR.cs
- TakeOrSkipQueryOperator.cs
- ResolvedKeyFrameEntry.cs
- base64Transforms.cs
- TextViewSelectionProcessor.cs
- BaseDataBoundControl.cs
- SchemaImporterExtensionElementCollection.cs
- SupportsEventValidationAttribute.cs
- ColorMatrix.cs
- XmlSchemaExporter.cs
- OracleCommand.cs
- SerializeAbsoluteContext.cs
- TimerTable.cs
- TextChangedEventArgs.cs
- Update.cs
- DbConnectionClosed.cs
- DelegateArgumentReference.cs
- TimeoutException.cs
- nulltextnavigator.cs
- WebPartDeleteVerb.cs
- ClientUtils.cs
- WebPartConnectionsConfigureVerb.cs
- _IPv4Address.cs
- DurableInstancingOptions.cs
- ColorContextHelper.cs
- GeometryDrawing.cs