Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewUpdateEventArgs.cs / 1 / FormViewUpdateEventArgs.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 FormViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public FormViewUpdateEventArgs(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 Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. This property is read-only. ////// public IOrderedDictionary NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a OrderedDictionary to populate with pre-edit 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 FormViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public FormViewUpdateEventArgs(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 Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. This property is read-only. ////// public IOrderedDictionary NewValues { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } ///Gets a OrderedDictionary to populate with updated row values. This property is read-only. ////// public IOrderedDictionary OldValues { get { if (_oldValues == null) { _oldValues = new OrderedDictionary(); } return _oldValues; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewCellStyleConverter.cs
- Int64AnimationBase.cs
- ToolboxItemSnapLineBehavior.cs
- ImmutableClientRuntime.cs
- TemplateInstanceAttribute.cs
- MultipleViewProviderWrapper.cs
- ReadOnlyCollection.cs
- IndexerNameAttribute.cs
- ValueExpressions.cs
- ListView.cs
- StatusBarAutomationPeer.cs
- Collection.cs
- SemaphoreFullException.cs
- BooleanConverter.cs
- SmtpAuthenticationManager.cs
- DataGridLinkButton.cs
- ListViewContainer.cs
- MulticastNotSupportedException.cs
- SqlDataSourceView.cs
- RelationshipEntry.cs
- HandlerBase.cs
- Speller.cs
- Effect.cs
- SecurityTokenProviderContainer.cs
- DriveInfo.cs
- ListSurrogate.cs
- ReadOnlyHierarchicalDataSourceView.cs
- Processor.cs
- AppDomainUnloadedException.cs
- WebUtil.cs
- RadioButton.cs
- LinqDataSourceContextEventArgs.cs
- PolyBezierSegmentFigureLogic.cs
- StrokeCollection2.cs
- QilPatternVisitor.cs
- MLangCodePageEncoding.cs
- SessionIDManager.cs
- OleDbCommand.cs
- VerificationAttribute.cs
- SpellerHighlightLayer.cs
- EncoderReplacementFallback.cs
- TableLayoutCellPaintEventArgs.cs
- CreateUserErrorEventArgs.cs
- SecurityUtils.cs
- XmlnsCompatibleWithAttribute.cs
- NetPipeSectionData.cs
- TableParagraph.cs
- HttpServerVarsCollection.cs
- CodeDomDesignerLoader.cs
- SizeConverter.cs
- ContainerControl.cs
- ApplicationHost.cs
- TransformedBitmap.cs
- WinFormsSpinner.cs
- Transform3DGroup.cs
- Int32AnimationBase.cs
- WebPartCollection.cs
- NullReferenceException.cs
- ButtonFieldBase.cs
- keycontainerpermission.cs
- ExternalCalls.cs
- RelationshipEntry.cs
- AsyncParams.cs
- Parameter.cs
- NavigationWindowAutomationPeer.cs
- CompiledRegexRunner.cs
- ImmutablePropertyDescriptorGridEntry.cs
- MinimizableAttributeTypeConverter.cs
- Utils.cs
- RedirectionProxy.cs
- ArraySegment.cs
- InlineObject.cs
- CommandConverter.cs
- XmlTextReaderImplHelpers.cs
- DataViewSettingCollection.cs
- StringOutput.cs
- TreeViewImageIndexConverter.cs
- ContainerParaClient.cs
- SchemaManager.cs
- PointAnimationBase.cs
- XmlTextAttribute.cs
- GeometryCollection.cs
- BmpBitmapDecoder.cs
- versioninfo.cs
- activationcontext.cs
- ApplicationActivator.cs
- BitmapEffectState.cs
- XmlEventCache.cs
- InertiaTranslationBehavior.cs
- FileDetails.cs
- SparseMemoryStream.cs
- WmlPanelAdapter.cs
- Function.cs
- WorkflowMarkupSerializationProvider.cs
- DialogWindow.cs
- ListViewInsertionMark.cs
- CurrencyManager.cs
- QueuePathDialog.cs
- EntityContainerAssociationSet.cs
- InvokeWebServiceDesigner.cs