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
- DataServices.cs
- XmlNode.cs
- MulticastDelegate.cs
- ContainerSelectorGlyph.cs
- HtmlInputRadioButton.cs
- SafeBitVector32.cs
- PeerResolverSettings.cs
- PersonalizationState.cs
- ServiceOperationParameter.cs
- UpdateProgress.cs
- DefaultConfirmation.cs
- ObjectItemAssemblyLoader.cs
- GridErrorDlg.cs
- DictionarySectionHandler.cs
- DayRenderEvent.cs
- PowerStatus.cs
- DbTransaction.cs
- MetafileHeaderEmf.cs
- ImageList.cs
- AccessDataSourceView.cs
- TimeZone.cs
- TransformValueSerializer.cs
- FocusManager.cs
- LocalizationComments.cs
- Axis.cs
- StringFormat.cs
- TextBoxRenderer.cs
- WebZone.cs
- TextInfo.cs
- Parallel.cs
- BehaviorEditorPart.cs
- WebSysDisplayNameAttribute.cs
- CharacterShapingProperties.cs
- XmlSerializerVersionAttribute.cs
- CollectionContainer.cs
- XDRSchema.cs
- WeakReference.cs
- Axis.cs
- DataFormat.cs
- GregorianCalendar.cs
- StreamingContext.cs
- RequestTimeoutManager.cs
- RectangleConverter.cs
- DBConcurrencyException.cs
- ListBoxItem.cs
- PointAnimationBase.cs
- DescendentsWalker.cs
- TemplateParser.cs
- ExtendedPropertyDescriptor.cs
- BitmapEffectRenderDataResource.cs
- ValueExpressions.cs
- EventMappingSettingsCollection.cs
- GridView.cs
- SafeEventHandle.cs
- RegistrySecurity.cs
- StringArrayConverter.cs
- HtmlTableRow.cs
- EventLogSession.cs
- Compiler.cs
- CmsInterop.cs
- Mappings.cs
- PtsHelper.cs
- ToolStripSeparator.cs
- AttributeParameterInfo.cs
- DynamicQueryableWrapper.cs
- ExistsInCollection.cs
- Encoder.cs
- HandlerBase.cs
- ProfilePropertySettingsCollection.cs
- HostingPreferredMapPath.cs
- ServiceModelSecurityTokenRequirement.cs
- ComponentEditorPage.cs
- DataGridViewLinkColumn.cs
- PopupRootAutomationPeer.cs
- TableChangeProcessor.cs
- EventLevel.cs
- AppSettingsExpressionEditor.cs
- CmsUtils.cs
- MailMessageEventArgs.cs
- XmlReflectionMember.cs
- QueryModel.cs
- UncommonField.cs
- DefaultPrintController.cs
- SqlUtil.cs
- StringInfo.cs
- MediaEntryAttribute.cs
- DependencyObjectType.cs
- FactoryId.cs
- AnnotationObservableCollection.cs
- BamlLocalizableResource.cs
- XmlSchemaNotation.cs
- EventEntry.cs
- _StreamFramer.cs
- DLinqDataModelProvider.cs
- SqlDependencyUtils.cs
- DomainConstraint.cs
- GZipStream.cs
- FormatConvertedBitmap.cs
- GridViewSelectEventArgs.cs
- JoinGraph.cs