Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }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
- SqlNodeAnnotations.cs
- OperationParameterInfo.cs
- AuthenticateEventArgs.cs
- HttpBufferlessInputStream.cs
- MimeTypeMapper.cs
- Brush.cs
- BatchStream.cs
- TreeWalkHelper.cs
- Viewport3DVisual.cs
- StringValueSerializer.cs
- PointLight.cs
- StaticSiteMapProvider.cs
- WindowsFormsHostAutomationPeer.cs
- DataGridTextColumn.cs
- TypeElement.cs
- TimersDescriptionAttribute.cs
- HyperLinkDataBindingHandler.cs
- RadioButtonRenderer.cs
- DataViewSettingCollection.cs
- CultureSpecificStringDictionary.cs
- CodeTypeMember.cs
- HandlerFactoryCache.cs
- PermissionAttributes.cs
- FormClosingEvent.cs
- WorkflowMarkupSerializationProvider.cs
- MSAAEventDispatcher.cs
- RuntimeVariableList.cs
- WindowCollection.cs
- XamlSerializer.cs
- ThicknessAnimationUsingKeyFrames.cs
- DbBuffer.cs
- RichTextBoxAutomationPeer.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- ColorTranslator.cs
- SortKey.cs
- URLString.cs
- MasterPageParser.cs
- PrintPreviewDialog.cs
- EventManager.cs
- LexicalChunk.cs
- LicenseManager.cs
- ContextMarshalException.cs
- GenericsInstances.cs
- AccessibleObject.cs
- HtmlInputButton.cs
- HttpModulesSection.cs
- AssemblyCache.cs
- webclient.cs
- DbConnectionPool.cs
- HtmlEncodedRawTextWriter.cs
- ResolveMatchesMessage11.cs
- SingleObjectCollection.cs
- AsymmetricKeyExchangeDeformatter.cs
- storagemappingitemcollection.viewdictionary.cs
- QilTargetType.cs
- BindStream.cs
- GroupQuery.cs
- ProxyAttribute.cs
- SqlFunctions.cs
- RC2CryptoServiceProvider.cs
- Publisher.cs
- PointKeyFrameCollection.cs
- dataprotectionpermissionattribute.cs
- ItemDragEvent.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- WorkflowQueuingService.cs
- LinkedList.cs
- TagPrefixCollection.cs
- Trace.cs
- EncoderFallback.cs
- XLinq.cs
- BitmapEncoder.cs
- XamlSerializer.cs
- RadioButtonAutomationPeer.cs
- AVElementHelper.cs
- SQLChars.cs
- EditorAttributeInfo.cs
- Block.cs
- XmlSchemaImporter.cs
- precedingsibling.cs
- SqlDataSourceConnectionPanel.cs
- BordersPage.cs
- GradientStopCollection.cs
- PriorityBinding.cs
- FontCacheLogic.cs
- PrintDialog.cs
- UpdateCompiler.cs
- CodeDelegateInvokeExpression.cs
- ThreadExceptionDialog.cs
- AjaxFrameworkAssemblyAttribute.cs
- ExpandedWrapper.cs
- WebBrowserBase.cs
- Constants.cs
- XPathNavigatorReader.cs
- StandardCommands.cs
- SmiEventSink_Default.cs
- RoleManagerSection.cs
- ProcessModule.cs
- ReadOnlyCollection.cs
- DynamicPropertyHolder.cs