Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewUpdateEventArgs.cs / 1305376 / GridViewUpdateEventArgs.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 GridViewUpdateEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _values; private OrderedDictionary _keys; private OrderedDictionary _oldValues; ///Provides data for some ///events. /// public GridViewUpdateEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } ///Initializes a new instance of the ////// class. /// 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; } } ///Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only. ////// public int RowIndex { get { return _rowIndex; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets the int argument to the command posted to the ///. This property is read-only.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Style.cs
- PenThreadPool.cs
- SQLDecimal.cs
- ExpressionReplacer.cs
- GraphicsState.cs
- FileAuthorizationModule.cs
- WeakRefEnumerator.cs
- StrongTypingException.cs
- ComponentDispatcherThread.cs
- SEHException.cs
- FrameDimension.cs
- StylusTip.cs
- CodeParameterDeclarationExpression.cs
- CrossAppDomainChannel.cs
- AssemblyAttributes.cs
- StateMachineHelpers.cs
- XmlResolver.cs
- DesignUtil.cs
- PowerModeChangedEventArgs.cs
- Compilation.cs
- WaitHandle.cs
- BitmapDecoder.cs
- EventLogException.cs
- Operand.cs
- SqlConnectionPoolGroupProviderInfo.cs
- UnsafeNativeMethods.cs
- OLEDB_Enum.cs
- ArgumentOutOfRangeException.cs
- DocumentViewerAutomationPeer.cs
- TrustManagerMoreInformation.cs
- TransformedBitmap.cs
- ClientSideProviderDescription.cs
- Line.cs
- SeekStoryboard.cs
- TextRangeEditTables.cs
- DockPanel.cs
- MessageEncodingBindingElement.cs
- ContentDisposition.cs
- RectAnimationBase.cs
- TypeSemantics.cs
- DocumentXPathNavigator.cs
- Selector.cs
- DuplexChannel.cs
- XamlGridLengthSerializer.cs
- UnsafeNativeMethods.cs
- DefaultPropertyAttribute.cs
- IISMapPath.cs
- ObjectAnimationBase.cs
- Identifier.cs
- NumberFormatInfo.cs
- RegisteredHiddenField.cs
- CTreeGenerator.cs
- SQLChars.cs
- TimerElapsedEvenArgs.cs
- MemberHolder.cs
- TextServicesDisplayAttribute.cs
- QueryCacheEntry.cs
- ViewStateModeByIdAttribute.cs
- Application.cs
- FreezableOperations.cs
- WorkflowInstanceExtensionManager.cs
- PropertyRef.cs
- MemberMemberBinding.cs
- ToolStripSeparator.cs
- HiddenField.cs
- AutoGeneratedField.cs
- XmlElementList.cs
- DispatcherBuilder.cs
- Dictionary.cs
- ZoneButton.cs
- ObjectToModelValueConverter.cs
- IPipelineRuntime.cs
- StatusBarDrawItemEvent.cs
- SystemInformation.cs
- CompiledQueryCacheEntry.cs
- BrowserDefinitionCollection.cs
- ContentPropertyAttribute.cs
- EntityDesignerUtils.cs
- BlockCollection.cs
- KnownTypeAttribute.cs
- SchemaObjectWriter.cs
- EntityKeyElement.cs
- StylusEventArgs.cs
- Native.cs
- TrackingMemoryStream.cs
- XmlNodeList.cs
- StyleSelector.cs
- _CommandStream.cs
- WindowsListViewScroll.cs
- SmtpMail.cs
- SwitchDesigner.xaml.cs
- FileNotFoundException.cs
- Transactions.cs
- StatusBar.cs
- PeerApplication.cs
- DynamicUpdateCommand.cs
- SafePEFileHandle.cs
- DesignerAttribute.cs
- WrappedReader.cs
- PerformanceCounter.cs