Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewUpdateEventArgs.cs / 1305376 / 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; ////// 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. //------------------------------------------------------------------------------ //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; ////// 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.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
- UnionQueryOperator.cs
- FlowDocumentView.cs
- ConnectionConsumerAttribute.cs
- DecimalStorage.cs
- MarkupWriter.cs
- TransportListener.cs
- ScriptModule.cs
- XmlILModule.cs
- IsolatedStoragePermission.cs
- NodeLabelEditEvent.cs
- ResourceManagerWrapper.cs
- WorkflowMarkupSerializationException.cs
- StorageModelBuildProvider.cs
- CheckPair.cs
- DesignerTransactionCloseEvent.cs
- TextAdaptor.cs
- SystemKeyConverter.cs
- ErrorEventArgs.cs
- _RequestCacheProtocol.cs
- Panel.cs
- RegistryKey.cs
- Metadata.cs
- Function.cs
- PointAnimationBase.cs
- control.ime.cs
- QuaternionAnimation.cs
- EdmToObjectNamespaceMap.cs
- ArraySet.cs
- ColumnTypeConverter.cs
- DependencyPropertyChangedEventArgs.cs
- QueryPageSettingsEventArgs.cs
- DebugView.cs
- EventBindingService.cs
- MarginsConverter.cs
- CommentAction.cs
- XmlComment.cs
- SqlClientWrapperSmiStream.cs
- MediaEntryAttribute.cs
- InvokeHandlers.cs
- CookielessHelper.cs
- SynchronizedDispatch.cs
- ProcessHostFactoryHelper.cs
- XPathDescendantIterator.cs
- KeyInstance.cs
- XhtmlStyleClass.cs
- EndpointDesigner.cs
- RowCache.cs
- HtmlTextArea.cs
- ObjectHandle.cs
- ParallelTimeline.cs
- WebPartMenuStyle.cs
- CryptoProvider.cs
- Types.cs
- SynchronizationContext.cs
- Privilege.cs
- MetabaseServerConfig.cs
- ListViewGroup.cs
- ExtenderControl.cs
- ContentFileHelper.cs
- MessageDescriptionCollection.cs
- RemotingException.cs
- StorageSetMapping.cs
- Tracking.cs
- PackageStore.cs
- QueuedDeliveryRequirementsMode.cs
- OracleTransaction.cs
- DetailsViewUpdatedEventArgs.cs
- ChannelSinkStacks.cs
- SchemaTableOptionalColumn.cs
- FontStyleConverter.cs
- designeractionbehavior.cs
- LineProperties.cs
- CharacterBufferReference.cs
- _SslState.cs
- DateTimeOffset.cs
- OptimizedTemplateContent.cs
- SafeBitVector32.cs
- DataGridViewComboBoxEditingControl.cs
- TaskFactory.cs
- ImageDrawing.cs
- COM2ComponentEditor.cs
- DataContractSerializerOperationBehavior.cs
- XPathParser.cs
- BooleanFunctions.cs
- TableRow.cs
- ColorContextHelper.cs
- CategoryAttribute.cs
- RequestChannel.cs
- BuildProvidersCompiler.cs
- RequestCacheEntry.cs
- ServiceBusyException.cs
- SecurityPermission.cs
- BreakSafeBase.cs
- PngBitmapDecoder.cs
- IntranetCredentialPolicy.cs
- AppDomainManager.cs
- BinaryWriter.cs
- EmissiveMaterial.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- LowerCaseStringConverter.cs