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
- DataTemplateKey.cs
- ScrollChrome.cs
- TransformerInfoCollection.cs
- MouseOverProperty.cs
- ValueTypeFixupInfo.cs
- SoapAttributeOverrides.cs
- EnumValidator.cs
- ExtentKey.cs
- LayoutTable.cs
- Size.cs
- SolidBrush.cs
- SRDisplayNameAttribute.cs
- EventWaitHandleSecurity.cs
- ToolStripDropDownMenu.cs
- SliderAutomationPeer.cs
- CapabilitiesAssignment.cs
- configsystem.cs
- EntityDataSourceContextCreatingEventArgs.cs
- VectorAnimationBase.cs
- XPathNodePointer.cs
- XsdBuilder.cs
- SHA384Managed.cs
- SerializableAttribute.cs
- PermissionSet.cs
- OdbcDataAdapter.cs
- PopupEventArgs.cs
- Group.cs
- NativeRightsManagementAPIsStructures.cs
- DataObjectEventArgs.cs
- HostingEnvironmentException.cs
- EntityContainerRelationshipSet.cs
- FunctionDetailsReader.cs
- GridItem.cs
- ObjectComplexPropertyMapping.cs
- SoapProtocolImporter.cs
- autovalidator.cs
- DocumentXmlWriter.cs
- FolderNameEditor.cs
- SapiRecognizer.cs
- XmlAttribute.cs
- EventLogPermission.cs
- AutoFocusStyle.xaml.cs
- PathFigureCollection.cs
- ImageFormatConverter.cs
- MethodToken.cs
- TypedAsyncResult.cs
- HashRepartitionEnumerator.cs
- XmlBinaryReader.cs
- NestedContainer.cs
- WindowsFormsSynchronizationContext.cs
- TextServicesCompartmentContext.cs
- BufferModeSettings.cs
- _StreamFramer.cs
- ViewCellRelation.cs
- ObjectQueryState.cs
- ReadWriteSpinLock.cs
- EntityKeyElement.cs
- OrderedDictionaryStateHelper.cs
- DiscreteKeyFrames.cs
- Metafile.cs
- AxisAngleRotation3D.cs
- JavaScriptString.cs
- SqlDataReader.cs
- EntityFunctions.cs
- SessionEndingCancelEventArgs.cs
- DataServiceContext.cs
- _DomainName.cs
- EntityDataSourceSelectingEventArgs.cs
- WebControlsSection.cs
- KoreanLunisolarCalendar.cs
- IgnoreSectionHandler.cs
- HeaderCollection.cs
- brushes.cs
- TopClause.cs
- ControlParameter.cs
- DocumentApplication.cs
- KnownTypes.cs
- WebPartDeleteVerb.cs
- GraphicsPath.cs
- LocatorPartList.cs
- ScriptDescriptor.cs
- BypassElement.cs
- CircleHotSpot.cs
- ObjectHandle.cs
- ConstNode.cs
- QueryAccessibilityHelpEvent.cs
- Wildcard.cs
- SharedPerformanceCounter.cs
- ToolStripSeparatorRenderEventArgs.cs
- OLEDB_Util.cs
- VisualBrush.cs
- CheckBoxField.cs
- Query.cs
- WpfGeneratedKnownTypes.cs
- WrappedIUnknown.cs
- ToolStripSplitButton.cs
- ObjectTypeMapping.cs
- VariableBinder.cs
- MasterPageParser.cs
- ProxyElement.cs