Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewInsertEventArgs.cs / 1 / FormViewInsertEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class FormViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewInsertEventArgs(object commandArgument) : base(false) { this._commandArgument = commandArgument; } ///Initializes a new instance of the ////// class. /// public object CommandArgument { get { return _commandArgument; } } ///Gets the argument to the command posted to the ///. This property is read-only. /// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //Gets a OrderedDictionary to populate with inserted row values. This property is read-only. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class FormViewInsertEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewInsertEventArgs(object commandArgument) : base(false) { this._commandArgument = commandArgument; } ///Initializes a new instance of the ////// class. /// public object CommandArgument { get { return _commandArgument; } } ///Gets the argument to the command posted to the ///. This property is read-only. /// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a OrderedDictionary to populate with inserted row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CssClassPropertyAttribute.cs
- DrawingContextDrawingContextWalker.cs
- StrokeCollectionConverter.cs
- InvalidEnumArgumentException.cs
- HtmlForm.cs
- TypeSystemHelpers.cs
- CharEnumerator.cs
- NavigationFailedEventArgs.cs
- FontResourceCache.cs
- SqlBuffer.cs
- NumberFormatInfo.cs
- StubHelpers.cs
- CompiledRegexRunnerFactory.cs
- DecoderFallback.cs
- NullableDecimalMinMaxAggregationOperator.cs
- ProviderSettings.cs
- ErrorWrapper.cs
- SupportsEventValidationAttribute.cs
- NativeObjectSecurity.cs
- ConfigXmlText.cs
- Clipboard.cs
- CriticalExceptions.cs
- Keyboard.cs
- CharacterHit.cs
- TimeStampChecker.cs
- ModelUIElement3D.cs
- XPathSelfQuery.cs
- DataBinding.cs
- TimeoutValidationAttribute.cs
- ColorPalette.cs
- ToolStrip.cs
- MsmqInputMessagePool.cs
- ImageSource.cs
- NavigationFailedEventArgs.cs
- TextTreeExtractElementUndoUnit.cs
- Models.cs
- ExpressionDumper.cs
- NeutralResourcesLanguageAttribute.cs
- ObjectSecurity.cs
- MarkupExtensionParser.cs
- WebPartDeleteVerb.cs
- DataListCommandEventArgs.cs
- dbenumerator.cs
- errorpatternmatcher.cs
- HashCodeCombiner.cs
- StylusCollection.cs
- X509Utils.cs
- ChannelSinkStacks.cs
- TransactionFlowBindingElement.cs
- FieldNameLookup.cs
- HostingEnvironmentSection.cs
- JsonServiceDocumentSerializer.cs
- StackBuilderSink.cs
- SecurityPolicySection.cs
- InkPresenterAutomationPeer.cs
- CallSiteHelpers.cs
- UpdateTranslator.cs
- ObjectListFieldCollection.cs
- CompilerScope.cs
- ScopelessEnumAttribute.cs
- Button.cs
- COM2ColorConverter.cs
- XmlILAnnotation.cs
- AnonymousIdentificationSection.cs
- StoragePropertyMapping.cs
- HttpDictionary.cs
- SafeReversePInvokeHandle.cs
- hwndwrapper.cs
- SqlInternalConnection.cs
- StrokeCollection2.cs
- QueryStringConverter.cs
- OneOfScalarConst.cs
- WebReferencesBuildProvider.cs
- MailAddress.cs
- HttpStaticObjectsCollectionWrapper.cs
- Parser.cs
- WebBrowserHelper.cs
- SqlClientFactory.cs
- ByteAnimation.cs
- PrintDialog.cs
- StringWriter.cs
- HtmlInputButton.cs
- Root.cs
- PtsHost.cs
- FixedStringLookup.cs
- NetMsmqSecurity.cs
- BackStopAuthenticationModule.cs
- TraceSection.cs
- WindowInteractionStateTracker.cs
- GrabHandleGlyph.cs
- Transactions.cs
- UdpSocket.cs
- DataGridViewCellCancelEventArgs.cs
- CompilerScopeManager.cs
- LineBreak.cs
- ServiceContractAttribute.cs
- CodeDirectiveCollection.cs
- SrgsOneOf.cs
- Transform.cs
- GridViewSortEventArgs.cs