Code:
/ DotNET / DotNET / 8.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
- EditorAttributeInfo.cs
- WebControl.cs
- ColumnWidthChangingEvent.cs
- ShowExpandedMultiValueConverter.cs
- ModelToObjectValueConverter.cs
- EntityConnectionStringBuilderItem.cs
- SelfIssuedTokenFactoryCredential.cs
- LocalizableResourceBuilder.cs
- SafeViewOfFileHandle.cs
- SymbolTable.cs
- ColorConvertedBitmap.cs
- QueryMatcher.cs
- InkCanvasAutomationPeer.cs
- RC2CryptoServiceProvider.cs
- PersonalizationProviderHelper.cs
- ActiveXContainer.cs
- VScrollBar.cs
- NameSpaceEvent.cs
- ConnectivityStatus.cs
- TextDecorationCollection.cs
- ReturnValue.cs
- DesignerEventService.cs
- rsa.cs
- ConnectionConsumerAttribute.cs
- DesignerActionUIStateChangeEventArgs.cs
- Native.cs
- DisplayMemberTemplateSelector.cs
- DataColumnPropertyDescriptor.cs
- DoubleStorage.cs
- RecordsAffectedEventArgs.cs
- WebEventTraceProvider.cs
- GCHandleCookieTable.cs
- Queue.cs
- WorkflowInlining.cs
- ExpressionBindingsDialog.cs
- Utils.cs
- documentsequencetextview.cs
- CheckBoxField.cs
- BasicCellRelation.cs
- TextElementAutomationPeer.cs
- XmlElementList.cs
- DbDataSourceEnumerator.cs
- ConditionalAttribute.cs
- WindowsBrush.cs
- CacheChildrenQuery.cs
- XmlBinaryReader.cs
- SurrogateSelector.cs
- TextCharacters.cs
- ConditionalAttribute.cs
- SizeChangedEventArgs.cs
- RuntimeConfigurationRecord.cs
- PenThreadWorker.cs
- AssemblyCacheEntry.cs
- ListView.cs
- XamlReaderHelper.cs
- NamespaceList.cs
- PropertyGridView.cs
- BitmapEffectCollection.cs
- AppSettingsSection.cs
- QuaternionIndependentAnimationStorage.cs
- MenuScrollingVisibilityConverter.cs
- DiscoveryDocumentLinksPattern.cs
- OrderByQueryOptionExpression.cs
- PerformanceCounterPermissionEntry.cs
- FolderBrowserDialog.cs
- XPathNode.cs
- DeferredReference.cs
- XmlSchemaInferenceException.cs
- StructuredTypeInfo.cs
- Item.cs
- WebPartTransformerCollection.cs
- FormDesigner.cs
- Stacktrace.cs
- InputLanguage.cs
- TextReader.cs
- DeploymentSection.cs
- TCEAdapterGenerator.cs
- InternalCache.cs
- VSWCFServiceContractGenerator.cs
- XamlSerializerUtil.cs
- BufferedWebEventProvider.cs
- NativeMethods.cs
- SizeAnimationBase.cs
- ThrowHelper.cs
- MemberJoinTreeNode.cs
- XmlArrayItemAttributes.cs
- DesignerRegionCollection.cs
- MdImport.cs
- KnownTypes.cs
- PackUriHelper.cs
- LinkConverter.cs
- XmlConvert.cs
- AdapterDictionary.cs
- ConstraintManager.cs
- XmlAttribute.cs
- LostFocusEventManager.cs
- DeferredElementTreeState.cs
- WindowsGraphics.cs
- Filter.cs
- JournalEntry.cs