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
- Solver.cs
- EntityModelSchemaGenerator.cs
- OpacityConverter.cs
- WindowsScrollBarBits.cs
- AppDomain.cs
- TextOutput.cs
- ServicePointManagerElement.cs
- XmlBindingWorker.cs
- HwndKeyboardInputProvider.cs
- CompilerGeneratedAttribute.cs
- WSFederationHttpSecurityMode.cs
- XmlAttributeProperties.cs
- NetworkStream.cs
- LogicalMethodInfo.cs
- PermissionAttributes.cs
- GACMembershipCondition.cs
- RangeExpression.cs
- Visual3D.cs
- NavigationProgressEventArgs.cs
- CasesDictionary.cs
- RenderData.cs
- X509RecipientCertificateClientElement.cs
- WebPartRestoreVerb.cs
- ByteArrayHelperWithString.cs
- ColorAnimationUsingKeyFrames.cs
- MemberAccessException.cs
- ConfigurationValidatorBase.cs
- HyperLinkField.cs
- IntegerValidatorAttribute.cs
- TrustLevel.cs
- EventPropertyMap.cs
- TitleStyle.cs
- OpCopier.cs
- NonceCache.cs
- SizeAnimationBase.cs
- BinaryObjectInfo.cs
- UrlMappingsModule.cs
- DocumentPageHost.cs
- FontDifferentiator.cs
- X509Chain.cs
- XmlSchemaValidator.cs
- ApplicationFileCodeDomTreeGenerator.cs
- TypeLibConverter.cs
- VisualTransition.cs
- Triplet.cs
- TemplateApplicationHelper.cs
- AxHost.cs
- CalendarAutomationPeer.cs
- SpecialNameAttribute.cs
- XmlUrlResolver.cs
- WebPageTraceListener.cs
- _StreamFramer.cs
- ClientConfigurationHost.cs
- DictionaryItemsCollection.cs
- CatalogPartCollection.cs
- XmlSchemaComplexContent.cs
- RuntimeArgumentHandle.cs
- SettingsBindableAttribute.cs
- WSFederationHttpSecurityMode.cs
- AffineTransform3D.cs
- PlanCompiler.cs
- Root.cs
- Pen.cs
- SamlAdvice.cs
- _BufferOffsetSize.cs
- EntityStoreSchemaFilterEntry.cs
- AssociationTypeEmitter.cs
- UInt64.cs
- AdapterUtil.cs
- StoragePropertyMapping.cs
- LicenseContext.cs
- EmptyCollection.cs
- XComponentModel.cs
- XsdDuration.cs
- ThreadExceptionEvent.cs
- PriorityBindingExpression.cs
- MultilineStringEditor.cs
- FtpRequestCacheValidator.cs
- TextWriter.cs
- SupportsEventValidationAttribute.cs
- AuthenticationModuleElement.cs
- RectangleHotSpot.cs
- dsa.cs
- SortExpressionBuilder.cs
- DiagnosticsConfiguration.cs
- RawAppCommandInputReport.cs
- FixedElement.cs
- TargetPerspective.cs
- WorkflowRuntimeEndpoint.cs
- Paragraph.cs
- PlainXmlWriter.cs
- ParallelEnumerable.cs
- DummyDataSource.cs
- TrackingAnnotationCollection.cs
- HWStack.cs
- PersonalizationProviderHelper.cs
- ViewGenerator.cs
- ClientSideProviderDescription.cs
- DataRowView.cs
- SystemResourceHost.cs