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
- FillErrorEventArgs.cs
- ThumbAutomationPeer.cs
- Semaphore.cs
- WebPartTransformer.cs
- GcSettings.cs
- MethodImplAttribute.cs
- MouseDevice.cs
- SmtpSection.cs
- SimpleModelProvider.cs
- ProfileParameter.cs
- DesignerVerbCollection.cs
- HandleExceptionArgs.cs
- CommentGlyph.cs
- Convert.cs
- CqlBlock.cs
- SharedUtils.cs
- AgileSafeNativeMemoryHandle.cs
- PageStatePersister.cs
- FragmentQueryProcessor.cs
- AssemblyAssociatedContentFileAttribute.cs
- TableRow.cs
- GPStream.cs
- ExclusiveNamedPipeTransportManager.cs
- MSHTMLHost.cs
- EncoderBestFitFallback.cs
- _HTTPDateParse.cs
- InternalSafeNativeMethods.cs
- Positioning.cs
- RootBuilder.cs
- MultipleViewProviderWrapper.cs
- assemblycache.cs
- ObjectAssociationEndMapping.cs
- TypeSystemProvider.cs
- Event.cs
- _ChunkParse.cs
- ToolStripOverflow.cs
- TemplateKey.cs
- SourceFileBuildProvider.cs
- COM2IPerPropertyBrowsingHandler.cs
- HttpCookie.cs
- HtmlUtf8RawTextWriter.cs
- LineInfo.cs
- Cursors.cs
- ComPlusInstanceContextInitializer.cs
- mansign.cs
- _SafeNetHandles.cs
- Comparer.cs
- OrderPreservingMergeHelper.cs
- DataServiceQuery.cs
- VirtualPathUtility.cs
- HtmlTableRowCollection.cs
- ToolTipAutomationPeer.cs
- EventLogPermissionAttribute.cs
- TextDpi.cs
- ApplicationDirectoryMembershipCondition.cs
- SessionStateItemCollection.cs
- Fonts.cs
- ContextInformation.cs
- ScriptRef.cs
- ObjectParameter.cs
- FilterException.cs
- DetailsViewInsertedEventArgs.cs
- TextSegment.cs
- ObjectDataProvider.cs
- FormViewInsertEventArgs.cs
- BindingBase.cs
- PEFileEvidenceFactory.cs
- XmlArrayItemAttributes.cs
- CriticalHandle.cs
- XDRSchema.cs
- InstanceNotReadyException.cs
- NumberFormatter.cs
- LoginCancelEventArgs.cs
- EntityWrapper.cs
- HwndProxyElementProvider.cs
- LinkedResourceCollection.cs
- ErrorFormatterPage.cs
- ReadOnlyDataSource.cs
- FtpWebResponse.cs
- InputBinder.cs
- PerspectiveCamera.cs
- CanExecuteRoutedEventArgs.cs
- PeerMaintainer.cs
- HtmlTextArea.cs
- Crc32Helper.cs
- Highlights.cs
- NativeMethodsCLR.cs
- ObjectFullSpanRewriter.cs
- InkCollectionBehavior.cs
- TextParagraphCache.cs
- BamlLocalizableResourceKey.cs
- HMACSHA512.cs
- PaperSource.cs
- NetMsmqBinding.cs
- HashStream.cs
- KeyFrames.cs
- JsonServiceDocumentSerializer.cs
- CodeDomSerializerBase.cs
- TdsRecordBufferSetter.cs
- HtmlTextArea.cs