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
- NotFiniteNumberException.cs
- DependencyPropertyValueSerializer.cs
- CultureInfoConverter.cs
- SqlFacetAttribute.cs
- Event.cs
- Compilation.cs
- WmlListAdapter.cs
- RowType.cs
- EventLog.cs
- CrossContextChannel.cs
- CounterCreationData.cs
- SafeHandles.cs
- Padding.cs
- FacetChecker.cs
- StringBlob.cs
- UdpChannelFactory.cs
- XmlName.cs
- DateTimeConstantAttribute.cs
- PtsContext.cs
- ProgressBarHighlightConverter.cs
- BitmapPalette.cs
- CacheOutputQuery.cs
- MyContact.cs
- TimeoutStream.cs
- CollectionViewGroup.cs
- ControlAdapter.cs
- SR.Designer.cs
- WsatServiceAddress.cs
- TableStyle.cs
- ServiceOperationViewControl.cs
- TextFragmentEngine.cs
- AccessibilityHelperForXpWin2k3.cs
- ScriptRegistrationManager.cs
- XslCompiledTransform.cs
- UmAlQuraCalendar.cs
- DriveInfo.cs
- JsonByteArrayDataContract.cs
- GridView.cs
- WebPartConnectionsEventArgs.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- IgnorePropertiesAttribute.cs
- SeparatorAutomationPeer.cs
- MethodBuilderInstantiation.cs
- TrackingProfileManager.cs
- RotateTransform.cs
- TaskDesigner.cs
- SqlProvider.cs
- KeySplineConverter.cs
- Point4DConverter.cs
- X509Certificate.cs
- NameScope.cs
- DataGridViewColumnConverter.cs
- SafeEventLogWriteHandle.cs
- HttpHandlersSection.cs
- StringReader.cs
- MD5Cng.cs
- LineInfo.cs
- SafeFileHandle.cs
- QuaternionValueSerializer.cs
- HttpHandlersInstallComponent.cs
- PublisherMembershipCondition.cs
- TypeDescriptor.cs
- ParagraphResult.cs
- LogSwitch.cs
- ValidationResult.cs
- Attachment.cs
- CombinedTcpChannel.cs
- HtmlLink.cs
- HTMLTagNameToTypeMapper.cs
- CompressedStack.cs
- XmlByteStreamWriter.cs
- SymbolType.cs
- CalendarAutoFormatDialog.cs
- newitemfactory.cs
- JoinElimination.cs
- ColumnWidthChangingEvent.cs
- WorkflowShape.cs
- DataGridViewBand.cs
- PasswordRecovery.cs
- SrgsElementFactory.cs
- UITypeEditor.cs
- FormsAuthenticationUser.cs
- UnicodeEncoding.cs
- SortedDictionary.cs
- IImplicitResourceProvider.cs
- Int64AnimationUsingKeyFrames.cs
- PerformanceCounter.cs
- IDReferencePropertyAttribute.cs
- MimeWriter.cs
- DummyDataSource.cs
- DataGridViewCellMouseEventArgs.cs
- TransformerInfo.cs
- Attributes.cs
- SystemIPInterfaceStatistics.cs
- InvalidDocumentContentsException.cs
- MethodResolver.cs
- ListViewCommandEventArgs.cs
- NativeMethods.cs
- MessagePartDescriptionCollection.cs
- SignedPkcs7.cs