Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewDeleteEventArgs.cs / 1305376 / GridViewDeleteEventArgs.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; ////// public class GridViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; public GridViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } ///Provides data for some ///events. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with parameters that identify the row to delete. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Gets a keyed list to populate with old row values. 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; ////// public class GridViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; public GridViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } ///Provides data for some ///events. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with parameters that identify the row to delete. This property is read-only. ////// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets a keyed list to populate with old row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Margins.cs
- DrawingContextDrawingContextWalker.cs
- SessionStateUtil.cs
- CheckBoxField.cs
- SystemWebExtensionsSectionGroup.cs
- DispatchChannelSink.cs
- BoundField.cs
- Int32KeyFrameCollection.cs
- Geometry3D.cs
- ScrollViewer.cs
- SecurityRuntime.cs
- StorageEndPropertyMapping.cs
- GuidConverter.cs
- RectAnimationUsingKeyFrames.cs
- CaseStatementProjectedSlot.cs
- XmlQueryContext.cs
- SelectionList.cs
- DataGridViewComboBoxColumn.cs
- PeerApplication.cs
- StaticFileHandler.cs
- TextEffect.cs
- TemplateNameScope.cs
- XmlSchemaSimpleContent.cs
- IPGlobalProperties.cs
- ProfileEventArgs.cs
- InheritanceContextHelper.cs
- FileEnumerator.cs
- ProfileGroupSettings.cs
- Point3DAnimationBase.cs
- JournalEntry.cs
- wgx_render.cs
- RangeExpression.cs
- XmlNavigatorStack.cs
- RoleGroupCollection.cs
- x509store.cs
- TypeNameParser.cs
- Hyperlink.cs
- SecurityRuntime.cs
- ContextBase.cs
- Stackframe.cs
- Point3DCollection.cs
- BaseValidator.cs
- DataGridViewColumnConverter.cs
- CurrentChangingEventManager.cs
- SoapTypeAttribute.cs
- XomlSerializationHelpers.cs
- ManagementBaseObject.cs
- XPathNavigator.cs
- HierarchicalDataTemplate.cs
- LostFocusEventManager.cs
- TemplatedWizardStep.cs
- NoneExcludedImageIndexConverter.cs
- ElementHost.cs
- ChildChangedEventArgs.cs
- PolyBezierSegmentFigureLogic.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- CodeSnippetCompileUnit.cs
- TemplateInstanceAttribute.cs
- HashCryptoHandle.cs
- XmlTypeMapping.cs
- BinaryObjectInfo.cs
- MatrixValueSerializer.cs
- EmulateRecognizeCompletedEventArgs.cs
- ClientBuildManagerCallback.cs
- Pointer.cs
- BindingGroup.cs
- ProcessingInstructionAction.cs
- MouseButton.cs
- MatrixCamera.cs
- SecureConversationVersion.cs
- SecurityResources.cs
- UIElementAutomationPeer.cs
- FileChangeNotifier.cs
- ListViewAutomationPeer.cs
- AnimationException.cs
- Brush.cs
- ContentFileHelper.cs
- Opcode.cs
- Query.cs
- Normalizer.cs
- ByteStreamMessage.cs
- ButtonChrome.cs
- XamlInt32CollectionSerializer.cs
- XmlDictionary.cs
- PointConverter.cs
- CombinedHttpChannel.cs
- GZipObjectSerializer.cs
- TypeSystemProvider.cs
- PrinterUnitConvert.cs
- AssertHelper.cs
- ParameterToken.cs
- AudienceUriMode.cs
- InvalidComObjectException.cs
- TripleDES.cs
- EntityDataSourceQueryBuilder.cs
- TransportChannelFactory.cs
- HitTestWithGeometryDrawingContextWalker.cs
- cookie.cs
- InputProcessorProfiles.cs
- AspNetSynchronizationContext.cs