Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / GridViewDeleteEventArgs.cs / 1 / 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- EnumBuilder.cs
- NativeCompoundFileAPIs.cs
- QilTypeChecker.cs
- BuildProvider.cs
- CompilationLock.cs
- ValidationRuleCollection.cs
- SafeLocalMemHandle.cs
- InitializationEventAttribute.cs
- ScriptDescriptor.cs
- HostExecutionContextManager.cs
- WebPartHelpVerb.cs
- SocketInformation.cs
- COMException.cs
- ScalarConstant.cs
- ZoneMembershipCondition.cs
- Mutex.cs
- TextRunCacheImp.cs
- SelectionChangedEventArgs.cs
- BitmapVisualManager.cs
- EntityTransaction.cs
- MutexSecurity.cs
- ControlCachePolicy.cs
- WebPartCatalogCloseVerb.cs
- WindowsAuthenticationEventArgs.cs
- CodeArgumentReferenceExpression.cs
- XPathSelectionIterator.cs
- DataControlFieldCell.cs
- DataExpression.cs
- BaseUriHelper.cs
- HandlerFactoryCache.cs
- ListViewInsertionMark.cs
- TextEditorTyping.cs
- TransformValueSerializer.cs
- ReaderWriterLockWrapper.cs
- GcHandle.cs
- RegionInfo.cs
- EventArgs.cs
- Encoder.cs
- AnchoredBlock.cs
- SystemKeyConverter.cs
- Avt.cs
- securitycriticaldata.cs
- ApplicationActivator.cs
- SafeBitVector32.cs
- HttpCookieCollection.cs
- CachedTypeface.cs
- MeshGeometry3D.cs
- DeflateEmulationStream.cs
- FlowDocumentReader.cs
- _AutoWebProxyScriptHelper.cs
- CharacterBuffer.cs
- ToolStripHighContrastRenderer.cs
- PixelShader.cs
- EditorZoneBase.cs
- XhtmlBasicPanelAdapter.cs
- ImageAnimator.cs
- RightsManagementInformation.cs
- Listbox.cs
- RequestCacheEntry.cs
- ErrorInfoXmlDocument.cs
- HtmlInputImage.cs
- StaticSiteMapProvider.cs
- WebRequest.cs
- NominalTypeEliminator.cs
- DrawListViewSubItemEventArgs.cs
- EarlyBoundInfo.cs
- FixedPage.cs
- OneToOneMappingSerializer.cs
- AddIn.cs
- EntityObject.cs
- SourceElementsCollection.cs
- IIS7UserPrincipal.cs
- MessageQueuePermissionEntry.cs
- RemoteArgument.cs
- AnnotationAuthorChangedEventArgs.cs
- GestureRecognizer.cs
- XmlSchemaAnyAttribute.cs
- HttpListenerContext.cs
- HttpClientProtocol.cs
- StoreAnnotationsMap.cs
- Typography.cs
- UserPersonalizationStateInfo.cs
- CatalogZoneBase.cs
- MarkupProperty.cs
- LinkUtilities.cs
- InputGestureCollection.cs
- LinqToSqlWrapper.cs
- ReferentialConstraint.cs
- ResourceAttributes.cs
- PersistChildrenAttribute.cs
- ExtendedProperty.cs
- FileLevelControlBuilderAttribute.cs
- DesignerActionPropertyItem.cs
- PbrsForward.cs
- BamlTreeUpdater.cs
- StdValidatorsAndConverters.cs
- TrayIconDesigner.cs
- Helpers.cs
- KeyMatchBuilder.cs
- DataGridRow.cs