Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }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
- InputBinding.cs
- RuntimeCompatibilityAttribute.cs
- SetUserPreferenceRequest.cs
- RichTextBoxConstants.cs
- MethodCallTranslator.cs
- InputScope.cs
- VersionConverter.cs
- PersonalizableAttribute.cs
- KnownBoxes.cs
- Trace.cs
- XmlSchemaObjectTable.cs
- XmlSchemaExternal.cs
- PeerApplication.cs
- ApplicationSecurityManager.cs
- XmlSecureResolver.cs
- TdsParserSafeHandles.cs
- CacheOutputQuery.cs
- Internal.cs
- QueueException.cs
- CompositeCollection.cs
- CompositeCollectionView.cs
- SupportsEventValidationAttribute.cs
- OleStrCAMarshaler.cs
- DbLambda.cs
- SamlAuthorityBinding.cs
- DisplayNameAttribute.cs
- PartBasedPackageProperties.cs
- BrowserCapabilitiesCodeGenerator.cs
- ShapingWorkspace.cs
- ByeMessage11.cs
- HttpContext.cs
- AssociationSetMetadata.cs
- Interlocked.cs
- ItemCollection.cs
- Expander.cs
- TextDecorationCollectionConverter.cs
- MouseOverProperty.cs
- PersonalizationStateInfo.cs
- ButtonBase.cs
- RoutedEvent.cs
- MimeWriter.cs
- BuildResult.cs
- OdbcEnvironmentHandle.cs
- ConstructorArgumentAttribute.cs
- ContentElementCollection.cs
- XmlObjectSerializerReadContextComplex.cs
- MulticastDelegate.cs
- SessionEndingCancelEventArgs.cs
- CommandExpr.cs
- SchemaElementLookUpTable.cs
- SourceElementsCollection.cs
- ExpressionEditorAttribute.cs
- SpeechSeg.cs
- ComplexObject.cs
- ValidatingPropertiesEventArgs.cs
- WebMessageFormatHelper.cs
- AppDomainUnloadedException.cs
- ConnectionStringsExpressionBuilder.cs
- DataGridViewRow.cs
- NamespaceCollection.cs
- BlobPersonalizationState.cs
- RevocationPoint.cs
- Attributes.cs
- ListBox.cs
- InvalidOleVariantTypeException.cs
- EntityDataSourceContextCreatingEventArgs.cs
- bidPrivateBase.cs
- HierarchicalDataBoundControl.cs
- KeyManager.cs
- StringConverter.cs
- DrawListViewItemEventArgs.cs
- EventEntry.cs
- SqlUtils.cs
- XXXInfos.cs
- CodeActivityContext.cs
- SerializationSectionGroup.cs
- ClipboardData.cs
- DataSourceGeneratorException.cs
- ShaderEffect.cs
- SQLDecimal.cs
- SparseMemoryStream.cs
- Control.cs
- Int32CollectionConverter.cs
- StringCollection.cs
- DbParameterCollectionHelper.cs
- PathStreamGeometryContext.cs
- TreeNode.cs
- BitVector32.cs
- SoapRpcServiceAttribute.cs
- ThemeDirectoryCompiler.cs
- UserControl.cs
- WebPartVerbCollection.cs
- ScriptResourceAttribute.cs
- ExportOptions.cs
- Size3D.cs
- XamlPoint3DCollectionSerializer.cs
- OracleString.cs
- TdsParserSafeHandles.cs
- XmlRawWriter.cs
- CharacterBufferReference.cs