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
- CustomAssemblyResolver.cs
- List.cs
- TypeHelpers.cs
- DataBinder.cs
- SafeSystemMetrics.cs
- RectKeyFrameCollection.cs
- CodeTypeDeclaration.cs
- CheckableControlBaseAdapter.cs
- PreservationFileReader.cs
- BaseParaClient.cs
- ActiveXSite.cs
- Signature.cs
- SqlException.cs
- DictationGrammar.cs
- AxisAngleRotation3D.cs
- HostingEnvironment.cs
- DispatchWrapper.cs
- RemotingException.cs
- SchemaElementDecl.cs
- ListBoxItemAutomationPeer.cs
- ManagedIStream.cs
- TreeViewCancelEvent.cs
- DependencyObjectType.cs
- SuppressIldasmAttribute.cs
- PopOutPanel.cs
- FontInfo.cs
- WaitHandle.cs
- Utility.cs
- ExtendedPropertyDescriptor.cs
- Unit.cs
- ActivityScheduledQuery.cs
- XmlSchemaSimpleContentExtension.cs
- DataDocumentXPathNavigator.cs
- GeometryGroup.cs
- COAUTHIDENTITY.cs
- FacetDescription.cs
- TableLayoutStyle.cs
- ADConnectionHelper.cs
- FixedTextView.cs
- BinaryObjectReader.cs
- InvalidPrinterException.cs
- _AutoWebProxyScriptEngine.cs
- ListViewGroup.cs
- XmlDataSourceView.cs
- XXXInfos.cs
- FontSource.cs
- MSAAEventDispatcher.cs
- TypeBuilderInstantiation.cs
- BehaviorDragDropEventArgs.cs
- PerformanceCounterLib.cs
- ServiceReference.cs
- DateTimeConstantAttribute.cs
- DiagnosticsConfigurationHandler.cs
- HttpCookie.cs
- SecurityElement.cs
- RegexCaptureCollection.cs
- RelationshipWrapper.cs
- PageTheme.cs
- GridViewSelectEventArgs.cs
- GridView.cs
- SingleAnimationBase.cs
- CommandField.cs
- ExtensionElement.cs
- SimpleExpression.cs
- WindowsFormsHelpers.cs
- GridErrorDlg.cs
- CapabilitiesRule.cs
- Compilation.cs
- RandomNumberGenerator.cs
- TimeEnumHelper.cs
- DataGridViewTopLeftHeaderCell.cs
- BindingElementExtensionElement.cs
- ChangePassword.cs
- Selector.cs
- ListViewGroupConverter.cs
- InternalsVisibleToAttribute.cs
- ObjectDataSource.cs
- WebPartCancelEventArgs.cs
- BaseDataBoundControl.cs
- Animatable.cs
- HttpProfileGroupBase.cs
- ItemContainerGenerator.cs
- OleDbDataAdapter.cs
- ValueUtilsSmi.cs
- WebUtil.cs
- TextDecorationCollection.cs
- TextStore.cs
- DropTarget.cs
- RegexNode.cs
- ResourcePermissionBaseEntry.cs
- ReadWriteControlDesigner.cs
- ExpressionPrefixAttribute.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- ControlTemplate.cs
- RelatedView.cs
- SocketCache.cs
- DataView.cs
- ServiceEndpointCollection.cs
- Thickness.cs
- EntityDataSourceDataSelection.cs