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
- TraceUtility.cs
- DetailsViewRowCollection.cs
- ResXFileRef.cs
- ServiceSecurityAuditElement.cs
- DbRetry.cs
- _IPv6Address.cs
- ProgressBar.cs
- RepeaterItemCollection.cs
- UnsafeNativeMethods.cs
- AnnotationAuthorChangedEventArgs.cs
- ObjectDataSourceView.cs
- StyleCollectionEditor.cs
- UIElementAutomationPeer.cs
- ServiceContractListItemList.cs
- UInt64Storage.cs
- XmlDictionaryReader.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- RelatedEnd.cs
- Exceptions.cs
- ListViewItem.cs
- ObjectDataSourceDisposingEventArgs.cs
- Privilege.cs
- PixelFormat.cs
- ConfigDefinitionUpdates.cs
- Line.cs
- ScrollProperties.cs
- SqlWebEventProvider.cs
- StringBlob.cs
- XmlAnyElementAttributes.cs
- SiteMapPathDesigner.cs
- StrokeDescriptor.cs
- XmlIlGenerator.cs
- QilInvokeLateBound.cs
- ClassDataContract.cs
- EntryPointNotFoundException.cs
- GridItemCollection.cs
- GridViewDeleteEventArgs.cs
- UnsafeNativeMethods.cs
- NativeRightsManagementAPIsStructures.cs
- IOException.cs
- HttpListenerException.cs
- ListSortDescription.cs
- XslTransform.cs
- CallbackHandler.cs
- WebSysDefaultValueAttribute.cs
- FileNotFoundException.cs
- MimeMapping.cs
- CompModSwitches.cs
- TableItemStyle.cs
- BufferCache.cs
- DrawingBrush.cs
- InvokeHandlers.cs
- IssuedSecurityTokenParameters.cs
- TypeInfo.cs
- EnumType.cs
- StandardBindingElementCollection.cs
- BatchParser.cs
- MouseButtonEventArgs.cs
- BitmapDecoder.cs
- ExpressionVisitor.cs
- WebBrowserProgressChangedEventHandler.cs
- InstanceLockQueryResult.cs
- ConstructorArgumentAttribute.cs
- RowVisual.cs
- ConfigXmlText.cs
- brushes.cs
- AndCondition.cs
- InlineUIContainer.cs
- PipelineModuleStepContainer.cs
- HttpApplication.cs
- InitializingNewItemEventArgs.cs
- XmlUrlEditor.cs
- EdmProviderManifest.cs
- WrappedIUnknown.cs
- Debug.cs
- QuotedStringWriteStateInfo.cs
- AccessViolationException.cs
- SkinBuilder.cs
- PageCodeDomTreeGenerator.cs
- Atom10FormatterFactory.cs
- ApplicationBuildProvider.cs
- RootAction.cs
- AccessDataSourceDesigner.cs
- RouteData.cs
- TreeNodeConverter.cs
- PathSegment.cs
- DataAdapter.cs
- ScalarOps.cs
- SmtpDigestAuthenticationModule.cs
- WindowHelperService.cs
- MultiPropertyDescriptorGridEntry.cs
- StylusDownEventArgs.cs
- DispatcherTimer.cs
- ConvertersCollection.cs
- BookmarkScopeInfo.cs
- ColorMap.cs
- IList.cs
- BuilderPropertyEntry.cs
- PersonalizationStateInfoCollection.cs
- ErrorTableItemStyle.cs