Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ListControl.cs
- MultilineStringConverter.cs
- SoapIgnoreAttribute.cs
- XmlValueConverter.cs
- ImportedPolicyConversionContext.cs
- Schema.cs
- TextViewElement.cs
- ContextProperty.cs
- Popup.cs
- NumericUpDownAcceleration.cs
- TypeElement.cs
- IPAddress.cs
- StylusPointPropertyInfo.cs
- TextTreeUndoUnit.cs
- EventlogProvider.cs
- SynchronousChannelMergeEnumerator.cs
- ListSourceHelper.cs
- TypeFieldSchema.cs
- DataSourceXmlAttributeAttribute.cs
- PartialTrustValidationBehavior.cs
- VisualTarget.cs
- ComponentManagerBroker.cs
- ItemContainerGenerator.cs
- TextBoxLine.cs
- ResponseBodyWriter.cs
- GridPatternIdentifiers.cs
- PrimitiveXmlSerializers.cs
- MarginsConverter.cs
- Effect.cs
- PropertyGeneratedEventArgs.cs
- ErrorTableItemStyle.cs
- XmlAnyAttributeAttribute.cs
- EditorPartChrome.cs
- TraceFilter.cs
- CookieHandler.cs
- __ConsoleStream.cs
- TextSegment.cs
- SHA512CryptoServiceProvider.cs
- PreProcessor.cs
- WpfSharedBamlSchemaContext.cs
- TextTreeTextElementNode.cs
- GlyphRunDrawing.cs
- formatter.cs
- TdsParserStateObject.cs
- DirectoryObjectSecurity.cs
- RewritingValidator.cs
- RoleGroupCollection.cs
- DataTable.cs
- MessageEncodingBindingElementImporter.cs
- SystemParameters.cs
- path.cs
- ExtentCqlBlock.cs
- Stacktrace.cs
- ScrollItemPattern.cs
- TimeSpanOrInfiniteValidator.cs
- StringFunctions.cs
- DataTableTypeConverter.cs
- Evidence.cs
- FreezableDefaultValueFactory.cs
- shaperfactory.cs
- CursorConverter.cs
- Rect.cs
- HttpProcessUtility.cs
- Synchronization.cs
- DrawListViewItemEventArgs.cs
- PolicyStatement.cs
- shaperfactory.cs
- RunWorkerCompletedEventArgs.cs
- AffineTransform3D.cs
- PropertyItemInternal.cs
- EntityDataSourceSelectedEventArgs.cs
- CalendarAutoFormat.cs
- EntityCommandDefinition.cs
- WarningException.cs
- DockProviderWrapper.cs
- ParserOptions.cs
- BaseValidatorDesigner.cs
- EnumConverter.cs
- VirtualPathProvider.cs
- Command.cs
- InplaceBitmapMetadataWriter.cs
- Certificate.cs
- SrgsRulesCollection.cs
- LayoutEngine.cs
- NumericExpr.cs
- EncoderReplacementFallback.cs
- TextTreeUndo.cs
- ProjectionPath.cs
- XsdDuration.cs
- NumberFunctions.cs
- XmlSerializerVersionAttribute.cs
- XmlReaderSettings.cs
- HostingEnvironment.cs
- ShortcutKeysEditor.cs
- GenericNameHandler.cs
- CompleteWizardStep.cs
- MessageLogger.cs
- MetadataHelper.cs
- AuthenticatedStream.cs
- IisTraceWebEventProvider.cs