Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- WorkflowServiceInstance.cs
- SamlAttributeStatement.cs
- LeftCellWrapper.cs
- XamlBuildTaskServices.cs
- TdsParserSafeHandles.cs
- ProviderCollection.cs
- ProcessInfo.cs
- ActivityExecutionFilter.cs
- SplitContainer.cs
- DataGrid.cs
- X509Certificate.cs
- StringExpressionSet.cs
- RelatedView.cs
- KeyInfo.cs
- LayoutUtils.cs
- ProgressBarRenderer.cs
- rsa.cs
- ObjectDisposedException.cs
- InputEventArgs.cs
- DependencyPropertyValueSerializer.cs
- hresults.cs
- sqlser.cs
- ToolStripItem.cs
- HttpResponse.cs
- X500Name.cs
- SoapEnvelopeProcessingElement.cs
- TextTrailingWordEllipsis.cs
- DbInsertCommandTree.cs
- DataTableCollection.cs
- SchemaConstraints.cs
- FunctionMappingTranslator.cs
- RandomNumberGenerator.cs
- StackBuilderSink.cs
- RawAppCommandInputReport.cs
- _ConnectionGroup.cs
- StateDesigner.cs
- PathSegmentCollection.cs
- ReflectionUtil.cs
- ADMembershipProvider.cs
- ExtensionDataObject.cs
- UserControl.cs
- DiscreteKeyFrames.cs
- BrowserCapabilitiesFactoryBase.cs
- HostSecurityManager.cs
- FolderBrowserDialogDesigner.cs
- PaintValueEventArgs.cs
- NavigationProperty.cs
- VirtualPathUtility.cs
- ComEventsInfo.cs
- CatalogZoneDesigner.cs
- DockProviderWrapper.cs
- HostExecutionContextManager.cs
- SoapInteropTypes.cs
- ParamArrayAttribute.cs
- OleDbConnectionInternal.cs
- ProgressBar.cs
- AstTree.cs
- Mutex.cs
- MetaModel.cs
- JpegBitmapDecoder.cs
- XamlSerializationHelper.cs
- Int16KeyFrameCollection.cs
- AvTrace.cs
- DataGridTablesFactory.cs
- BamlRecords.cs
- RawContentTypeMapper.cs
- UIPropertyMetadata.cs
- MachineKeySection.cs
- TimeSpanMinutesConverter.cs
- SystemColors.cs
- ColumnWidthChangingEvent.cs
- BamlVersionHeader.cs
- __Filters.cs
- XMLUtil.cs
- ToolStripProgressBar.cs
- HttpServerChannel.cs
- WebControlAdapter.cs
- _TransmitFileOverlappedAsyncResult.cs
- ClientOptions.cs
- ObjectDataSourceMethodEditor.cs
- InkCanvasAutomationPeer.cs
- StyleBamlTreeBuilder.cs
- SynchronizedDisposablePool.cs
- _CacheStreams.cs
- CacheMode.cs
- FormatException.cs
- Frame.cs
- Transform3D.cs
- TemplateControlCodeDomTreeGenerator.cs
- SeekStoryboard.cs
- FlowDocumentFormatter.cs
- TdsParserSessionPool.cs
- DataTableMappingCollection.cs
- EditorPartDesigner.cs
- PageCodeDomTreeGenerator.cs
- ISAPIRuntime.cs
- ToolboxItemImageConverter.cs
- TaskHelper.cs
- EtwTrackingBehaviorElement.cs
- DataGridViewColumnTypeEditor.cs