Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }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
- WindowsListViewItemCheckBox.cs
- precedingsibling.cs
- TransformerConfigurationWizardBase.cs
- RotateTransform3D.cs
- ReaderWriterLock.cs
- Rect.cs
- HtmlInputCheckBox.cs
- TemplateControlCodeDomTreeGenerator.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- WebPartPersonalization.cs
- odbcmetadatafactory.cs
- StrokeNodeData.cs
- BorderGapMaskConverter.cs
- WebPart.cs
- DescendantQuery.cs
- WebScriptEnablingBehavior.cs
- basenumberconverter.cs
- XmlAutoDetectWriter.cs
- NameTable.cs
- ChannelTerminatedException.cs
- TableRow.cs
- PointF.cs
- ReflectTypeDescriptionProvider.cs
- GlyphCollection.cs
- TabOrder.cs
- DataGridViewCheckBoxColumn.cs
- DataServiceExpressionVisitor.cs
- ResolvePPIDRequest.cs
- IntranetCredentialPolicy.cs
- MetafileEditor.cs
- TriggerActionCollection.cs
- DataRecordObjectView.cs
- Queue.cs
- WeakEventManager.cs
- CodeSnippetCompileUnit.cs
- FastPropertyAccessor.cs
- StickyNoteContentControl.cs
- MenuCommandsChangedEventArgs.cs
- XmlDataSourceView.cs
- WindowVisualStateTracker.cs
- DetailsViewUpdateEventArgs.cs
- RoleManagerModule.cs
- Light.cs
- XamlTypeMapper.cs
- ExpressionEditorAttribute.cs
- MaskedTextBox.cs
- DelegateArgumentReference.cs
- CollectionViewSource.cs
- SelectionListDesigner.cs
- CharStorage.cs
- ToolStripMenuItem.cs
- NetCodeGroup.cs
- Geometry3D.cs
- CharAnimationBase.cs
- EncodingDataItem.cs
- WindowsToolbarAsMenu.cs
- MoveSizeWinEventHandler.cs
- LoginUtil.cs
- InstalledFontCollection.cs
- HttpProfileGroupBase.cs
- ResourcePool.cs
- BaseCodeDomTreeGenerator.cs
- XslAst.cs
- SqlDependencyUtils.cs
- ToolStripScrollButton.cs
- NavigatingCancelEventArgs.cs
- Token.cs
- IndependentAnimationStorage.cs
- InstalledFontCollection.cs
- XPathAxisIterator.cs
- UpdatePanelTriggerCollection.cs
- ChtmlTextWriter.cs
- ReliableOutputConnection.cs
- ChameleonKey.cs
- StartUpEventArgs.cs
- Annotation.cs
- VariableDesigner.xaml.cs
- PreviewPrintController.cs
- UserControl.cs
- RequestStatusBarUpdateEventArgs.cs
- X509ChainPolicy.cs
- UnsafeNetInfoNativeMethods.cs
- _NTAuthentication.cs
- SqlCommandBuilder.cs
- CompilationLock.cs
- ellipse.cs
- DisplayInformation.cs
- ItemsControlAutomationPeer.cs
- FlowSwitch.cs
- WsdlInspector.cs
- NavigationProperty.cs
- DataPagerField.cs
- ConsumerConnectionPointCollection.cs
- RequiredAttributeAttribute.cs
- ExceptionHelpers.cs
- MatrixTransform.cs
- Emitter.cs
- CodeAttributeArgumentCollection.cs
- PipelineDeploymentState.cs
- DomNameTable.cs