Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- FileLogRecordHeader.cs
- AccessControlEntry.cs
- ServiceErrorHandler.cs
- ExtensibleClassFactory.cs
- ReadOnlyDictionary.cs
- GenericsNotImplementedException.cs
- SerialPort.cs
- ListBoxItemAutomationPeer.cs
- NameTable.cs
- BaseValidator.cs
- DataServiceQueryProvider.cs
- SchemaCollectionCompiler.cs
- EnumValAlphaComparer.cs
- HttpModulesSection.cs
- EventOpcode.cs
- NullableConverter.cs
- DataGridViewRowPostPaintEventArgs.cs
- PropertyTabAttribute.cs
- MetadataImporterQuotas.cs
- OdbcError.cs
- Metafile.cs
- DataServiceQuery.cs
- TextInfo.cs
- OperatorExpressions.cs
- DispatcherProcessingDisabled.cs
- DataListItem.cs
- FontStretches.cs
- HttpRequestWrapper.cs
- SoapSchemaMember.cs
- FixedSOMTextRun.cs
- MenuItem.cs
- RNGCryptoServiceProvider.cs
- MultipleViewPattern.cs
- TrustManagerMoreInformation.cs
- ExpressionTextBox.xaml.cs
- DesignerSelectionListAdapter.cs
- Boolean.cs
- ControlCachePolicy.cs
- ResourceType.cs
- BrowserCapabilitiesCodeGenerator.cs
- WebDisplayNameAttribute.cs
- Screen.cs
- RoleGroupCollection.cs
- AxHost.cs
- SpeechAudioFormatInfo.cs
- SplitContainer.cs
- DecoderExceptionFallback.cs
- JoinSymbol.cs
- AppSettingsExpressionBuilder.cs
- HandlerBase.cs
- ContentDesigner.cs
- Attributes.cs
- RetriableClipboard.cs
- OverlappedAsyncResult.cs
- Base64Decoder.cs
- ExceptionValidationRule.cs
- HandleRef.cs
- ThrowHelper.cs
- ParallelDesigner.cs
- ResourceType.cs
- COM2PictureConverter.cs
- EntityDataSourceContainerNameConverter.cs
- LifetimeServices.cs
- Number.cs
- MetaColumn.cs
- ToolTipService.cs
- EncoderParameter.cs
- SBCSCodePageEncoding.cs
- ToolConsole.cs
- filewebrequest.cs
- AppearanceEditorPart.cs
- ShapingEngine.cs
- NumericUpDownAcceleration.cs
- ModelPropertyCollectionImpl.cs
- SqlConnectionFactory.cs
- GridViewColumn.cs
- EnumValAlphaComparer.cs
- SQLDouble.cs
- EntityConnectionStringBuilder.cs
- Geometry3D.cs
- FormatConvertedBitmap.cs
- RecipientInfo.cs
- WebPartManagerInternals.cs
- TypeUnloadedException.cs
- SqlUserDefinedTypeAttribute.cs
- PointLight.cs
- Vector3DKeyFrameCollection.cs
- SqlNodeTypeOperators.cs
- ListItem.cs
- Header.cs
- RuleValidation.cs
- DrawingContextWalker.cs
- SqlDuplicator.cs
- ItemDragEvent.cs
- SmiEventSink_Default.cs
- DebugHandleTracker.cs
- DataGridViewColumnCollectionEditor.cs
- MemoryMappedFileSecurity.cs
- ReadOnlyDictionary.cs
- JulianCalendar.cs