Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewUpdateEventArgs.cs / 1 / 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- WebPartsPersonalization.cs
- UpdateEventArgs.cs
- NativeMethods.cs
- ChtmlTextWriter.cs
- BamlResourceContent.cs
- CodeTypeDeclarationCollection.cs
- DateTimeAutomationPeer.cs
- MessageQueuePermissionEntryCollection.cs
- PtsCache.cs
- ReadonlyMessageFilter.cs
- ValidationSummary.cs
- SqlGenerator.cs
- ImageUrlEditor.cs
- XmlWhitespace.cs
- XhtmlBasicObjectListAdapter.cs
- BamlRecords.cs
- UpdateExpressionVisitor.cs
- RequestBringIntoViewEventArgs.cs
- QuaternionAnimation.cs
- ViewBox.cs
- InfiniteIntConverter.cs
- CaseStatement.cs
- ReadWriteSpinLock.cs
- GridEntry.cs
- ClipboardProcessor.cs
- CodeConstructor.cs
- CompilerCollection.cs
- RequestCachingSection.cs
- BamlBinaryWriter.cs
- ResourceSet.cs
- DataColumnChangeEvent.cs
- DbProviderManifest.cs
- Wizard.cs
- XmlUtil.cs
- ContractValidationHelper.cs
- DataGridViewImageCell.cs
- EventDescriptorCollection.cs
- EllipseGeometry.cs
- MarginsConverter.cs
- DesignerLinkAdapter.cs
- VectorCollection.cs
- Sentence.cs
- MarkupExtensionReturnTypeAttribute.cs
- TryExpression.cs
- Vector3DCollectionConverter.cs
- HtmlTableRowCollection.cs
- RawKeyboardInputReport.cs
- CaseKeyBox.ViewModel.cs
- GlyphInfoList.cs
- BlockUIContainer.cs
- QilFactory.cs
- TCPListener.cs
- SpStreamWrapper.cs
- SafePEFileHandle.cs
- ExpressionPrinter.cs
- DoubleAnimationBase.cs
- TextSelectionHelper.cs
- SimpleApplicationHost.cs
- DataGridLinkButton.cs
- OLEDB_Enum.cs
- ReaderContextStackData.cs
- VectorValueSerializer.cs
- ToolBarOverflowPanel.cs
- SystemIcons.cs
- X500Name.cs
- SaveFileDialog.cs
- ObjectCloneHelper.cs
- DataControlField.cs
- MsmqProcessProtocolHandler.cs
- TreeViewItem.cs
- DataGridState.cs
- ListBoxItemAutomationPeer.cs
- XmlSubtreeReader.cs
- GZipDecoder.cs
- CornerRadiusConverter.cs
- BufferModeSettings.cs
- MLangCodePageEncoding.cs
- HandlerBase.cs
- SiteMapDataSource.cs
- RectAnimation.cs
- securitycriticaldataClass.cs
- WriteStateInfoBase.cs
- WebPartDisplayModeEventArgs.cs
- ProgressiveCrcCalculatingStream.cs
- MethodToken.cs
- InputLangChangeRequestEvent.cs
- Clause.cs
- String.cs
- WindowsAuthenticationModule.cs
- NumericExpr.cs
- TextSerializer.cs
- ServiceModelConfigurationSectionCollection.cs
- SingleAnimationBase.cs
- DataGridViewLayoutData.cs
- XmlElementCollection.cs
- AtomParser.cs
- TabletDeviceInfo.cs
- LoginCancelEventArgs.cs
- SocketInformation.cs
- SizeConverter.cs