Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewUpdateEventArgs.cs / 1305376 / FormViewUpdateEventArgs.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 FormViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public FormViewUpdateEventArgs(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 FormViewUpdateEventArgs : CancelEventArgs { private object _commandArgument; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public FormViewUpdateEventArgs(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
- Opcode.cs
- WindowsTitleBar.cs
- COM2TypeInfoProcessor.cs
- WsdlInspector.cs
- XXXInfos.cs
- CustomAttributeFormatException.cs
- DesignerVerbToolStripMenuItem.cs
- ScrollChrome.cs
- FigureHelper.cs
- ConfigXmlElement.cs
- X509ServiceCertificateAuthentication.cs
- TrackingServices.cs
- CharacterBuffer.cs
- StorageComplexTypeMapping.cs
- CodeTypeDeclarationCollection.cs
- ContextProperty.cs
- WhitespaceRuleReader.cs
- VectorAnimationBase.cs
- RootProfilePropertySettingsCollection.cs
- JsonReader.cs
- SizeValueSerializer.cs
- ConsumerConnectionPointCollection.cs
- SqlXml.cs
- OrderPreservingSpoolingTask.cs
- InvokePattern.cs
- NaturalLanguageHyphenator.cs
- nulltextnavigator.cs
- ResourcePermissionBase.cs
- WsdlParser.cs
- ObjectDataSourceView.cs
- EDesignUtil.cs
- Asn1IntegerConverter.cs
- NetTcpSectionData.cs
- SerializationStore.cs
- ComUdtElementCollection.cs
- DataColumnMappingCollection.cs
- GeometryGroup.cs
- PersonalizationDictionary.cs
- XPathAncestorIterator.cs
- XmlSiteMapProvider.cs
- PathData.cs
- PerspectiveCamera.cs
- WebPartExportVerb.cs
- DocumentOrderQuery.cs
- VariableQuery.cs
- ReadWriteObjectLock.cs
- ThreadStartException.cs
- FlowLayout.cs
- PassportIdentity.cs
- EventLevel.cs
- AsyncResult.cs
- CodeNamespace.cs
- RoleBoolean.cs
- MtomMessageEncoder.cs
- CodeExpressionCollection.cs
- BinaryObjectReader.cs
- DesignSurfaceServiceContainer.cs
- SystemUnicastIPAddressInformation.cs
- DataGridViewRowHeaderCell.cs
- TouchFrameEventArgs.cs
- MarshalByRefObject.cs
- RemoteEndpointMessageProperty.cs
- documentsequencetextpointer.cs
- NotFiniteNumberException.cs
- CompiledXpathExpr.cs
- ScopedMessagePartSpecification.cs
- infer.cs
- DataGridAutoFormat.cs
- ProfileSettings.cs
- HttpModuleCollection.cs
- ValidationPropertyAttribute.cs
- DataStorage.cs
- DocumentSequenceHighlightLayer.cs
- RuntimeConfig.cs
- MissingMethodException.cs
- MessageAction.cs
- WebPartMovingEventArgs.cs
- VirtualizingPanel.cs
- SizeConverter.cs
- FilteredAttributeCollection.cs
- WeakHashtable.cs
- PropertyRecord.cs
- PrintController.cs
- DocumentSchemaValidator.cs
- OleDbException.cs
- HealthMonitoringSection.cs
- PolyQuadraticBezierSegment.cs
- ChannelEndpointElement.cs
- CalendarDayButton.cs
- Keyboard.cs
- DrawingVisualDrawingContext.cs
- TextRangeAdaptor.cs
- CacheOutputQuery.cs
- XsltContext.cs
- XmlRawWriter.cs
- IProducerConsumerCollection.cs
- WeakHashtable.cs
- ToolStripProgressBar.cs
- UnsafeNativeMethods.cs
- ObjectListFieldsPage.cs