Code:
/ 4.0 / 4.0 / untmp / 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. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EpmContentDeSerializer.cs
- streamingZipPartStream.cs
- AnnotationHighlightLayer.cs
- URL.cs
- TextTreeInsertUndoUnit.cs
- ApplicationHost.cs
- TiffBitmapEncoder.cs
- XsltSettings.cs
- EntityTransaction.cs
- RandomNumberGenerator.cs
- ComponentEvent.cs
- PointConverter.cs
- StringDictionaryEditor.cs
- XmlWrappingWriter.cs
- StringReader.cs
- Relationship.cs
- GridSplitter.cs
- BuilderPropertyEntry.cs
- EntityClientCacheKey.cs
- SimpleHandlerBuildProvider.cs
- PEFileEvidenceFactory.cs
- HttpCacheVary.cs
- altserialization.cs
- TextCompositionEventArgs.cs
- TextPointerBase.cs
- MatrixAnimationUsingKeyFrames.cs
- LookupNode.cs
- QueryGeneratorBase.cs
- ImageListStreamer.cs
- UpDownBaseDesigner.cs
- HealthMonitoringSection.cs
- HiddenField.cs
- TextRenderer.cs
- SqlLiftWhereClauses.cs
- ErrorProvider.cs
- TextParagraphProperties.cs
- DesignerHelpers.cs
- Double.cs
- UInt32.cs
- EventEntry.cs
- ArraySet.cs
- TableLayoutPanelCellPosition.cs
- AdjustableArrowCap.cs
- DefaultBindingPropertyAttribute.cs
- XmlSchemaComplexContentExtension.cs
- FrameworkRichTextComposition.cs
- ProcessExitedException.cs
- TextRenderer.cs
- XmlText.cs
- EntryPointNotFoundException.cs
- StrokeCollection2.cs
- MethodToken.cs
- QueryExpr.cs
- GridItemProviderWrapper.cs
- SizeIndependentAnimationStorage.cs
- DocumentPaginator.cs
- EmptyStringExpandableObjectConverter.cs
- ErrorFormatterPage.cs
- TextElement.cs
- HostingEnvironmentSection.cs
- Button.cs
- PropertyGridView.cs
- WinEventTracker.cs
- TimeoutTimer.cs
- MachineKeySection.cs
- AppDomainAttributes.cs
- DeflateStream.cs
- Vector3DCollection.cs
- CharacterHit.cs
- ControlValuePropertyAttribute.cs
- HttpApplication.cs
- CultureMapper.cs
- JavaScriptObjectDeserializer.cs
- SchemaNames.cs
- XmlSerializerSection.cs
- DbUpdateCommandTree.cs
- ParameterCollection.cs
- BindValidationContext.cs
- DataGridViewImageCell.cs
- DefaultAsyncDataDispatcher.cs
- SelectionItemProviderWrapper.cs
- XsdBuildProvider.cs
- RevocationPoint.cs
- OperationResponse.cs
- MergeExecutor.cs
- TreeIterators.cs
- PageSettings.cs
- DBBindings.cs
- SevenBitStream.cs
- LinearKeyFrames.cs
- TempFiles.cs
- PolicyStatement.cs
- CustomCredentialPolicy.cs
- SmiGettersStream.cs
- ControllableStoryboardAction.cs
- RegisteredHiddenField.cs
- ListComponentEditor.cs
- DescendantOverDescendantQuery.cs
- HierarchicalDataBoundControl.cs
- ServicesExceptionNotHandledEventArgs.cs