Code:
/ DotNET / DotNET / 8.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
- XslTransform.cs
- WorkflowControlClient.cs
- MobilePage.cs
- EncoderParameters.cs
- EncryptedType.cs
- SessionPageStateSection.cs
- ValidatedControlConverter.cs
- _ConnectStream.cs
- CompilerCollection.cs
- RawKeyboardInputReport.cs
- CrossContextChannel.cs
- EventDescriptor.cs
- InlineObject.cs
- TemplateControlBuildProvider.cs
- SafeEventLogWriteHandle.cs
- ContextProperty.cs
- HtmlEncodedRawTextWriter.cs
- Types.cs
- EventProxy.cs
- DefaultEventAttribute.cs
- coordinatorscratchpad.cs
- TextSelectionHighlightLayer.cs
- Utility.cs
- BinaryMethodMessage.cs
- XmlDesigner.cs
- SerializationAttributes.cs
- webclient.cs
- GeneralTransform3DGroup.cs
- Parallel.cs
- HMACSHA256.cs
- OdbcConnectionHandle.cs
- PrefixQName.cs
- TextTreeTextBlock.cs
- CharUnicodeInfo.cs
- X509UI.cs
- AdornerPresentationContext.cs
- StatusBarPanel.cs
- ComplexType.cs
- Qualifier.cs
- Point4DConverter.cs
- TraceContextEventArgs.cs
- ConfigXmlCDataSection.cs
- XsdBuilder.cs
- FillRuleValidation.cs
- SecurityKeyUsage.cs
- EventLog.cs
- DocumentReferenceCollection.cs
- CodeDelegateCreateExpression.cs
- DoubleCollectionValueSerializer.cs
- RenamedEventArgs.cs
- XmlSchemaSimpleContentExtension.cs
- ZipIOModeEnforcingStream.cs
- SortAction.cs
- GB18030Encoding.cs
- PageRanges.cs
- WebPartTransformer.cs
- StylusCaptureWithinProperty.cs
- MouseWheelEventArgs.cs
- DataObjectPastingEventArgs.cs
- TextContainer.cs
- Assembly.cs
- SemaphoreFullException.cs
- VideoDrawing.cs
- BorderGapMaskConverter.cs
- RIPEMD160Managed.cs
- DataTemplate.cs
- UInt64Converter.cs
- ProfileSection.cs
- PersonalizablePropertyEntry.cs
- DataColumnMappingCollection.cs
- SelectionGlyphBase.cs
- SqlFunctionAttribute.cs
- ToolStripItemCollection.cs
- ExplicitDiscriminatorMap.cs
- SizeAnimationClockResource.cs
- ImageResources.Designer.cs
- TrackingLocationCollection.cs
- StringResourceManager.cs
- IsolatedStorage.cs
- RoleGroupCollection.cs
- ComponentCollection.cs
- XmlHierarchicalDataSourceView.cs
- PersonalizableAttribute.cs
- DataRowExtensions.cs
- login.cs
- SqlCacheDependencyDatabase.cs
- RoutedCommand.cs
- DockAndAnchorLayout.cs
- RijndaelManagedTransform.cs
- CookieParameter.cs
- IconHelper.cs
- ProfilePropertySettings.cs
- BoundColumn.cs
- DictionaryBase.cs
- _SSPISessionCache.cs
- NameValueCollection.cs
- BindToObject.cs
- ZipArchive.cs
- ToolStripProgressBar.cs
- AesManaged.cs