Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BrowserDefinition.cs
- BaseTemplatedMobileComponentEditor.cs
- TextRunCache.cs
- ToolStripItemImageRenderEventArgs.cs
- DataSourceView.cs
- ApplicationServiceManager.cs
- ErrorEventArgs.cs
- SqlProviderServices.cs
- ClientApiGenerator.cs
- MergeFilterQuery.cs
- basemetadatamappingvisitor.cs
- IPEndPoint.cs
- IPHostEntry.cs
- TransactionContextManager.cs
- IDQuery.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- ServiceNotStartedException.cs
- LambdaCompiler.Generated.cs
- ThreadAbortException.cs
- ComponentEditorForm.cs
- SymLanguageType.cs
- XmlNamedNodeMap.cs
- PenThread.cs
- BinaryExpression.cs
- Gdiplus.cs
- XsltException.cs
- KeyValueInternalCollection.cs
- ContentType.cs
- HealthMonitoringSectionHelper.cs
- PathFigure.cs
- ScaleTransform3D.cs
- WebPartActionVerb.cs
- ApplicationSecurityManager.cs
- MultipartContentParser.cs
- SystemColorTracker.cs
- EntityClientCacheKey.cs
- SystemWebCachingSectionGroup.cs
- WindowsTreeView.cs
- ViewValidator.cs
- RepeaterItemCollection.cs
- TransactedReceiveScope.cs
- RectangleHotSpot.cs
- Rotation3D.cs
- MapPathBasedVirtualPathProvider.cs
- Ray3DHitTestResult.cs
- SelectionItemProviderWrapper.cs
- LinkLabel.cs
- CmsInterop.cs
- CompilerResults.cs
- PasswordPropertyTextAttribute.cs
- CompiledRegexRunner.cs
- C14NUtil.cs
- _SafeNetHandles.cs
- SQLGuid.cs
- CachedBitmap.cs
- CDSCollectionETWBCLProvider.cs
- CodeActivityMetadata.cs
- objectresult_tresulttype.cs
- DataGridViewRow.cs
- _FixedSizeReader.cs
- ToolStripLocationCancelEventArgs.cs
- SessionSwitchEventArgs.cs
- FamilyCollection.cs
- SkinBuilder.cs
- ContractAdapter.cs
- RightsManagementPermission.cs
- ShaperBuffers.cs
- MultiSelectRootGridEntry.cs
- complextypematerializer.cs
- BufferModesCollection.cs
- TemplatePagerField.cs
- TagMapCollection.cs
- CustomAttributeSerializer.cs
- ControlHelper.cs
- GenericTypeParameterBuilder.cs
- DesignerAutoFormat.cs
- CapabilitiesSection.cs
- ReadOnlyDictionary.cs
- SettingsPropertyCollection.cs
- StylusLogic.cs
- XmlRootAttribute.cs
- FileChangesMonitor.cs
- ToolboxItem.cs
- ExpandSegment.cs
- ObjectStateManagerMetadata.cs
- StorageMappingFragment.cs
- DesignerGenericWebPart.cs
- WmpBitmapEncoder.cs
- MultipartIdentifier.cs
- Rect.cs
- SmtpNtlmAuthenticationModule.cs
- OdbcUtils.cs
- TabPage.cs
- translator.cs
- RadioButtonFlatAdapter.cs
- CapabilitiesState.cs
- TypeConverterHelper.cs
- CheckPair.cs
- CounterCreationData.cs
- XamlDesignerSerializationManager.cs