Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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. ///// 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
- UriTemplateMatchException.cs
- SchemaConstraints.cs
- VirtualizingStackPanel.cs
- SchemaType.cs
- PageBreakRecord.cs
- ProgressBar.cs
- ModelItemExtensions.cs
- ListViewSortEventArgs.cs
- MouseActionConverter.cs
- StringBuilder.cs
- processwaithandle.cs
- IndentTextWriter.cs
- TreeNodeBindingCollection.cs
- HitTestFilterBehavior.cs
- UIPermission.cs
- _AutoWebProxyScriptWrapper.cs
- QuadraticBezierSegment.cs
- WebControlParameterProxy.cs
- JsonEnumDataContract.cs
- ResourcesChangeInfo.cs
- DesignTimeParseData.cs
- WorkflowInstanceContextProvider.cs
- FontStyleConverter.cs
- BinaryFormatterWriter.cs
- ComplexPropertyEntry.cs
- BamlRecords.cs
- CacheOutputQuery.cs
- XmlSchemaInfo.cs
- WebResourceAttribute.cs
- Baml2006ReaderSettings.cs
- SignedXmlDebugLog.cs
- WSFederationHttpSecurity.cs
- ListControlBoundActionList.cs
- EntityStoreSchemaFilterEntry.cs
- DataViewListener.cs
- XmlElementAttributes.cs
- EntityDataSourceView.cs
- Material.cs
- ProfileGroupSettings.cs
- PositiveTimeSpanValidator.cs
- TransportBindingElement.cs
- ParameterCollectionEditor.cs
- ParentControlDesigner.cs
- Literal.cs
- Vars.cs
- SqlDataSourceSummaryPanel.cs
- ValueType.cs
- WebPartConnectionsConnectVerb.cs
- webeventbuffer.cs
- RowUpdatingEventArgs.cs
- ActiveXSite.cs
- PathFigureCollectionValueSerializer.cs
- UserControlCodeDomTreeGenerator.cs
- ImageConverter.cs
- Button.cs
- CreateParams.cs
- SchemaImporterExtensionElement.cs
- ListComponentEditor.cs
- Math.cs
- Transform3DGroup.cs
- DbgUtil.cs
- ScrollBarAutomationPeer.cs
- DocumentPageViewAutomationPeer.cs
- ipaddressinformationcollection.cs
- Clause.cs
- __Error.cs
- CanExecuteRoutedEventArgs.cs
- Base64Decoder.cs
- ConnectionStringSettingsCollection.cs
- DataObjectMethodAttribute.cs
- ItemsPresenter.cs
- BitmapImage.cs
- DataObjectEventArgs.cs
- TextEditorCharacters.cs
- Model3DCollection.cs
- XmlExtensionFunction.cs
- ChangePasswordAutoFormat.cs
- HttpRequest.cs
- JapaneseCalendar.cs
- TextSpan.cs
- SoapEnumAttribute.cs
- CachedCompositeFamily.cs
- CodeCommentStatement.cs
- CustomValidator.cs
- MaxMessageSizeStream.cs
- SQLInt32.cs
- OraclePermission.cs
- MessageDescriptionCollection.cs
- CounterSampleCalculator.cs
- ObjectDataSourceDesigner.cs
- TrackingMemoryStreamFactory.cs
- LinkButton.cs
- DataGridViewCellFormattingEventArgs.cs
- SafeNativeMethods.cs
- MultitargetUtil.cs
- StylusEventArgs.cs
- SelectionItemPatternIdentifiers.cs
- SqlDataSourceFilteringEventArgs.cs
- ReadOnlyAttribute.cs
- CodeTypeOfExpression.cs