Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- Mutex.cs
- RegistrationServices.cs
- SQLInt16Storage.cs
- DocumentXPathNavigator.cs
- RelativeSource.cs
- DownloadProgressEventArgs.cs
- Facet.cs
- PeerNameRecordCollection.cs
- ElementProxy.cs
- CellPartitioner.cs
- ToolBarButton.cs
- ProfileSection.cs
- OutputScopeManager.cs
- DataGridRowHeaderAutomationPeer.cs
- D3DImage.cs
- IgnorePropertiesAttribute.cs
- ExpressionNormalizer.cs
- EditorPart.cs
- XamlBuildTaskServices.cs
- RotateTransform3D.cs
- AsyncOperation.cs
- SystemEvents.cs
- WindowsFormsHost.cs
- DisposableCollectionWrapper.cs
- NameValuePair.cs
- wmiprovider.cs
- XmlIncludeAttribute.cs
- CopyEncoder.cs
- CultureMapper.cs
- AnnotationHelper.cs
- DropSource.cs
- ConsumerConnectionPointCollection.cs
- NavigationProgressEventArgs.cs
- AnnotationResource.cs
- Int64AnimationUsingKeyFrames.cs
- Enum.cs
- WindowsFont.cs
- PerfService.cs
- Setter.cs
- TextServicesContext.cs
- InstanceCollisionException.cs
- QueryLifecycle.cs
- WebPartConnection.cs
- DataObjectPastingEventArgs.cs
- RectAnimation.cs
- UriTemplateEquivalenceComparer.cs
- BulletChrome.cs
- CheckBoxPopupAdapter.cs
- PropertyGridEditorPart.cs
- AesManaged.cs
- RelatedCurrencyManager.cs
- WebDisplayNameAttribute.cs
- PerformanceCountersBase.cs
- bidPrivateBase.cs
- SqlNotificationRequest.cs
- Columns.cs
- LocalizationComments.cs
- ObjectViewListener.cs
- GeometryModel3D.cs
- EntityClientCacheKey.cs
- ElementUtil.cs
- ToolStripSettings.cs
- OutputWindow.cs
- StickyNote.cs
- DataGridHeaderBorder.cs
- DataGridViewSelectedRowCollection.cs
- LabelDesigner.cs
- ByteBufferPool.cs
- PeerService.cs
- ComplexType.cs
- StyleCollection.cs
- SByteStorage.cs
- HttpContextBase.cs
- FieldBuilder.cs
- ProfileSettings.cs
- KeyConstraint.cs
- Version.cs
- DispatcherOperation.cs
- RelationshipType.cs
- TypeConverterAttribute.cs
- HttpDebugHandler.cs
- TextEditorLists.cs
- UnknownBitmapEncoder.cs
- HealthMonitoringSection.cs
- IFlowDocumentViewer.cs
- CodeMethodReturnStatement.cs
- XPathParser.cs
- DocumentReferenceCollection.cs
- SqlXml.cs
- IsolatedStorage.cs
- PartManifestEntry.cs
- ISFTagAndGuidCache.cs
- SignatureToken.cs
- ping.cs
- TextBoxRenderer.cs
- CodeGroup.cs
- ErrorHandler.cs
- MetadataArtifactLoaderResource.cs
- SchemaMapping.cs
- WindowsScrollBarBits.cs