Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- IRCollection.cs
- XmlNamespaceMapping.cs
- DelegatingTypeDescriptionProvider.cs
- InkCanvasFeedbackAdorner.cs
- TrackPointCollection.cs
- ValidationService.cs
- NonDualMessageSecurityOverHttpElement.cs
- ExpressionStringBuilder.cs
- NameScope.cs
- CompareInfo.cs
- SubclassTypeValidator.cs
- DataGridTableCollection.cs
- NotCondition.cs
- InstanceOwnerException.cs
- WebPartHeaderCloseVerb.cs
- SizeFConverter.cs
- XmlMapping.cs
- Style.cs
- ErrorHandler.cs
- FileDialogCustomPlacesCollection.cs
- designeractionlistschangedeventargs.cs
- HandleRef.cs
- XmlSerializableWriter.cs
- CaseInsensitiveHashCodeProvider.cs
- PermissionRequestEvidence.cs
- ButtonStandardAdapter.cs
- UserPreferenceChangingEventArgs.cs
- EditorPartCollection.cs
- SQLByte.cs
- WebBrowserHelper.cs
- HierarchicalDataBoundControlAdapter.cs
- Fx.cs
- FontFamilyIdentifier.cs
- ConnectionsZone.cs
- ISAPIRuntime.cs
- SessionPageStateSection.cs
- SwitchAttribute.cs
- MultiAsyncResult.cs
- ComponentCommands.cs
- ToolBarTray.cs
- SapiRecognizer.cs
- SqlDataSourceWizardForm.cs
- Sql8ExpressionRewriter.cs
- SourceElementsCollection.cs
- Matrix.cs
- PathFigureCollection.cs
- SerialPort.cs
- PeerNearMe.cs
- MouseEvent.cs
- PolyBezierSegmentFigureLogic.cs
- TabRenderer.cs
- DataServiceQuery.cs
- CommandSet.cs
- HwndPanningFeedback.cs
- CodeAttributeArgumentCollection.cs
- InputLanguageCollection.cs
- HtmlInputSubmit.cs
- QueryTask.cs
- ConnectionManagementSection.cs
- PropertyGeneratedEventArgs.cs
- PerformanceCounterLib.cs
- SqlInternalConnectionTds.cs
- FormsAuthenticationModule.cs
- FileLoadException.cs
- DefaultClaimSet.cs
- ConfigurationFileMap.cs
- SafeSystemMetrics.cs
- DataViewManager.cs
- PolyLineSegment.cs
- DynamicResourceExtension.cs
- DataGridViewRowsAddedEventArgs.cs
- SystemWebCachingSectionGroup.cs
- IntPtr.cs
- IRCollection.cs
- WinFormsComponentEditor.cs
- WebCategoryAttribute.cs
- DllNotFoundException.cs
- DataGridCell.cs
- HtmlSelect.cs
- OLEDB_Util.cs
- WebMessageEncodingBindingElement.cs
- EventDescriptorCollection.cs
- InvalidMessageContractException.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- CommandExpr.cs
- NestedContainer.cs
- ConfigXmlReader.cs
- RuntimeConfigLKG.cs
- SplineKeyFrames.cs
- ExpressionPrefixAttribute.cs
- GraphicsPathIterator.cs
- ObjectSpanRewriter.cs
- DataGridHyperlinkColumn.cs
- DataColumnCollection.cs
- JsonEnumDataContract.cs
- GlyphRun.cs
- PerformanceCounterManager.cs
- ColumnProvider.cs
- FakeModelPropertyImpl.cs
- BrowserDefinition.cs