Code:
/ FX-1434 / FX-1434 / 1.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
- PerformanceCounterCategory.cs
- LabelEditEvent.cs
- XmlLanguageConverter.cs
- Number.cs
- XmlTextWriter.cs
- Int32Storage.cs
- TemplateBindingExpressionConverter.cs
- TimelineGroup.cs
- XPathExpr.cs
- SizeFConverter.cs
- XPathPatternParser.cs
- DocumentPageView.cs
- HtmlMeta.cs
- SystemFonts.cs
- DeferredSelectedIndexReference.cs
- TimersDescriptionAttribute.cs
- Helpers.cs
- XmlNamespaceDeclarationsAttribute.cs
- WindowShowOrOpenTracker.cs
- XmlTypeAttribute.cs
- Model3D.cs
- CompositionTarget.cs
- OuterGlowBitmapEffect.cs
- TracePayload.cs
- Imaging.cs
- TdsRecordBufferSetter.cs
- ObjectMemberMapping.cs
- GAC.cs
- DurableOperationContext.cs
- OleDbCommand.cs
- DesignerEventService.cs
- ManagementNamedValueCollection.cs
- DebuggerAttributes.cs
- ChannelFactory.cs
- PeerCustomResolverBindingElement.cs
- TableLayoutStyle.cs
- EmptyControlCollection.cs
- OleAutBinder.cs
- AspNetSynchronizationContext.cs
- XamlToRtfWriter.cs
- ListBase.cs
- ListViewEditEventArgs.cs
- NamespaceInfo.cs
- PrtTicket_Public_Simple.cs
- DesignerDataParameter.cs
- ComAwareEventInfo.cs
- StorageMappingItemCollection.cs
- TableRowCollection.cs
- TabItemAutomationPeer.cs
- CodeNamespaceCollection.cs
- RTLAwareMessageBox.cs
- SqlReferenceCollection.cs
- SemanticResultValue.cs
- TableRow.cs
- MatrixTransform.cs
- SelectorAutomationPeer.cs
- StrongTypingException.cs
- ToolStripLabel.cs
- EventSinkActivity.cs
- DataTableMapping.cs
- RoleManagerModule.cs
- BooleanExpr.cs
- CodeNamespace.cs
- PenThreadPool.cs
- SimpleHandlerFactory.cs
- ProcessThread.cs
- BindingEntityInfo.cs
- PopOutPanel.cs
- DCSafeHandle.cs
- Keywords.cs
- InputLangChangeEvent.cs
- SafeFileHandle.cs
- SessionStateUtil.cs
- ExportException.cs
- Expression.cs
- FileFormatException.cs
- Geometry3D.cs
- ClientSession.cs
- CacheChildrenQuery.cs
- RoleManagerModule.cs
- VScrollBar.cs
- RequestQueryParser.cs
- PreviewPrintController.cs
- TabControlEvent.cs
- DrawingAttributes.cs
- UriTemplatePathPartiallyEquivalentSet.cs
- GridPattern.cs
- CachedRequestParams.cs
- SqlAliaser.cs
- GestureRecognizer.cs
- ExpressionBuilder.cs
- FillRuleValidation.cs
- HtmlControl.cs
- EntityViewContainer.cs
- CultureTableRecord.cs
- Comparer.cs
- DataTemplateKey.cs
- Rotation3D.cs
- ScalarConstant.cs
- webclient.cs