Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewUpdateEventArgs.cs / 1 / DetailsViewUpdateEventArgs.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 DetailsViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public DetailsViewUpdateEventArgs(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
- UIElement.cs
- XhtmlTextWriter.cs
- RotateTransform3D.cs
- NumberSubstitution.cs
- EntityTransaction.cs
- GridView.cs
- IPipelineRuntime.cs
- SerialPort.cs
- OwnerDrawPropertyBag.cs
- XmlEnumAttribute.cs
- EmptyQuery.cs
- TypeGeneratedEventArgs.cs
- BufferBuilder.cs
- ThicknessKeyFrameCollection.cs
- WebPartDeleteVerb.cs
- XslNumber.cs
- SqlRecordBuffer.cs
- ScriptServiceAttribute.cs
- AsyncResult.cs
- StringReader.cs
- Ipv6Element.cs
- ObjectDataSourceFilteringEventArgs.cs
- DataSourceListEditor.cs
- sqlser.cs
- SourceItem.cs
- CodeAccessSecurityEngine.cs
- XmlSchemaDatatype.cs
- InkCanvasAutomationPeer.cs
- RIPEMD160.cs
- CaseInsensitiveComparer.cs
- Table.cs
- BamlLocalizableResource.cs
- ReadContentAsBinaryHelper.cs
- FrugalList.cs
- GeneralTransform3DGroup.cs
- DispatcherExceptionEventArgs.cs
- LinkConverter.cs
- ObjectDataSourceStatusEventArgs.cs
- ProfilePropertyMetadata.cs
- StyleSheet.cs
- CreateUserErrorEventArgs.cs
- TagNameToTypeMapper.cs
- FontConverter.cs
- Rights.cs
- SettingsPropertyValue.cs
- InheritedPropertyChangedEventArgs.cs
- VectorValueSerializer.cs
- IPHostEntry.cs
- InlinedAggregationOperatorEnumerator.cs
- DocumentViewer.cs
- ClientOperation.cs
- ToolStripOverflowButton.cs
- PartialTrustValidationBehavior.cs
- XmlAnyAttributeAttribute.cs
- LiteralSubsegment.cs
- BevelBitmapEffect.cs
- UserMapPath.cs
- ExtendedPropertyDescriptor.cs
- RowToParametersTransformer.cs
- _IPv6Address.cs
- DbReferenceCollection.cs
- InputProviderSite.cs
- ThreadExceptionEvent.cs
- HelpKeywordAttribute.cs
- IndependentAnimationStorage.cs
- InputBinder.cs
- ArgumentsParser.cs
- SHA1CryptoServiceProvider.cs
- FtpCachePolicyElement.cs
- DataRecordInternal.cs
- FixedSOMTable.cs
- rsa.cs
- RemoveStoryboard.cs
- MemberProjectedSlot.cs
- BufferedGraphicsManager.cs
- DataGridTextBoxColumn.cs
- Blend.cs
- GenericEnumerator.cs
- Events.cs
- ConsumerConnectionPointCollection.cs
- _WebProxyDataBuilder.cs
- localization.cs
- DispatcherExceptionFilterEventArgs.cs
- COM2ExtendedTypeConverter.cs
- ListenerConnectionModeReader.cs
- GlyphElement.cs
- PenThreadWorker.cs
- TreeView.cs
- ActivityBindForm.cs
- BeginGetFileNameFromUserRequest.cs
- XmlAnyElementAttribute.cs
- XmlSchemaNotation.cs
- SqlCachedBuffer.cs
- OperationContextScope.cs
- SimpleBitVector32.cs
- X509Chain.cs
- DesignerDataSourceView.cs
- MediaPlayer.cs
- MasterPageParser.cs
- FtpRequestCacheValidator.cs