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
- OracleTimeSpan.cs
- RegisteredDisposeScript.cs
- SqlProvider.cs
- ScrollItemPattern.cs
- DecimalAnimationBase.cs
- Soap.cs
- HttpProfileGroupBase.cs
- MSG.cs
- PartialList.cs
- _CookieModule.cs
- HttpResponse.cs
- XmlCharCheckingReader.cs
- AnimatedTypeHelpers.cs
- RowSpanVector.cs
- SingleConverter.cs
- AssemblyCache.cs
- ViewPort3D.cs
- ScrollData.cs
- GeometryDrawing.cs
- DeliveryStrategy.cs
- XmlCharType.cs
- MouseDevice.cs
- XamlStream.cs
- OptimizerPatterns.cs
- InstanceCreationEditor.cs
- MultiPartWriter.cs
- TextElementCollection.cs
- DbConnectionPool.cs
- BoundColumn.cs
- BinaryOperationBinder.cs
- DesignerSerializationVisibilityAttribute.cs
- SystemInfo.cs
- SelectedDatesCollection.cs
- IxmlLineInfo.cs
- DataServiceQueryException.cs
- ZipIOLocalFileHeader.cs
- GradientStop.cs
- SoapClientMessage.cs
- SqlTriggerAttribute.cs
- CultureMapper.cs
- StorageInfo.cs
- ExpressionConverter.cs
- ExpressionEditorSheet.cs
- AppSettingsReader.cs
- DragCompletedEventArgs.cs
- smtppermission.cs
- Win32.cs
- IdentifierCollection.cs
- HttpChannelBindingToken.cs
- PowerStatus.cs
- OleServicesContext.cs
- ArraySet.cs
- ByeMessageCD1.cs
- ExtendLockCommand.cs
- GeneralTransform3DCollection.cs
- CapabilitiesAssignment.cs
- EncodingInfo.cs
- DataGridViewComboBoxCell.cs
- ServiceDescriptionContext.cs
- PenCursorManager.cs
- IntAverageAggregationOperator.cs
- Cursor.cs
- objectresult_tresulttype.cs
- BindingSource.cs
- GridViewCommandEventArgs.cs
- BooleanStorage.cs
- SqlBuilder.cs
- EtwTrackingBehavior.cs
- ListQueryResults.cs
- TopClause.cs
- ContentPresenter.cs
- CurrencyManager.cs
- oledbmetadatacollectionnames.cs
- XmlReflectionImporter.cs
- Rfc2898DeriveBytes.cs
- NavigationWindowAutomationPeer.cs
- ContentControl.cs
- LocatorBase.cs
- PropertyStore.cs
- ModuleConfigurationInfo.cs
- SpotLight.cs
- TextTreeText.cs
- Marshal.cs
- CompilerResults.cs
- DockProviderWrapper.cs
- ControlAdapter.cs
- PrinterUnitConvert.cs
- MatrixTransform3D.cs
- DataColumnChangeEvent.cs
- MouseDevice.cs
- DataGridViewRowStateChangedEventArgs.cs
- DataProviderNameConverter.cs
- MultiPageTextView.cs
- InstanceView.cs
- sqlpipe.cs
- BooleanExpr.cs
- NumberAction.cs
- MailAddressParser.cs
- ItemContainerGenerator.cs
- SchemaLookupTable.cs