Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- keycontainerpermission.cs
- HttpWebResponse.cs
- ApplicationDirectory.cs
- Delay.cs
- DataStreams.cs
- DataGridCommandEventArgs.cs
- SQLResource.cs
- Collection.cs
- DoubleCollectionConverter.cs
- StrongName.cs
- Empty.cs
- Literal.cs
- IndependentlyAnimatedPropertyMetadata.cs
- QilGenerator.cs
- sqlmetadatafactory.cs
- XmlTextAttribute.cs
- AttributeCollection.cs
- WindowInteractionStateTracker.cs
- SafeSecurityHandles.cs
- EditingContext.cs
- InvokeProviderWrapper.cs
- VirtualDirectoryMapping.cs
- SafeThemeHandle.cs
- DateTimeFormat.cs
- TypeSystem.cs
- XamlRtfConverter.cs
- QilValidationVisitor.cs
- EdmConstants.cs
- ErrorProvider.cs
- ServiceOperationViewControl.cs
- ObjectListDataBindEventArgs.cs
- MetadataItem.cs
- StringPropertyBuilder.cs
- TouchesOverProperty.cs
- ReferenceConverter.cs
- Shape.cs
- XamlTreeBuilder.cs
- SafeEventLogWriteHandle.cs
- ImageButton.cs
- InputDevice.cs
- WorkflowApplicationUnloadedException.cs
- ActivityMarkupSerializationProvider.cs
- PartitionResolver.cs
- SessionStateModule.cs
- GridItemPatternIdentifiers.cs
- PartitionedStream.cs
- PageAsyncTaskManager.cs
- RegistrySecurity.cs
- HotCommands.cs
- AttributeCollection.cs
- DataServiceHost.cs
- RichTextBoxAutomationPeer.cs
- QueryOperator.cs
- HttpValueCollection.cs
- ConfigXmlSignificantWhitespace.cs
- XomlSerializationHelpers.cs
- MultilineStringConverter.cs
- IntegerValidator.cs
- TypeInitializationException.cs
- ProcessProtocolHandler.cs
- XmlNullResolver.cs
- VisualStyleElement.cs
- RequestQueue.cs
- DataPointer.cs
- HttpProfileBase.cs
- Win32SafeHandles.cs
- FileVersionInfo.cs
- BamlLocalizableResource.cs
- SqlGenerator.cs
- CompiledQueryCacheKey.cs
- ComNativeDescriptor.cs
- UriTemplateTableMatchCandidate.cs
- Selection.cs
- TypedRowGenerator.cs
- InfocardClientCredentials.cs
- GlobalDataBindingHandler.cs
- bindurihelper.cs
- ProfileManager.cs
- SamlSubject.cs
- TextRange.cs
- OutputCacheSettings.cs
- EncoderFallback.cs
- StaticTextPointer.cs
- GlyphRunDrawing.cs
- EntityDataSourceView.cs
- VerticalAlignConverter.cs
- Track.cs
- SecurityElement.cs
- LeafCellTreeNode.cs
- TabletDeviceInfo.cs
- RelationshipEndCollection.cs
- Parsers.cs
- JumpItem.cs
- TypeBuilder.cs
- RepeatButtonAutomationPeer.cs
- AdapterUtil.cs
- SettingsPropertyValue.cs
- SerializationAttributes.cs
- DelimitedListTraceListener.cs
- FunctionCommandText.cs