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
- RealProxy.cs
- PersonalizablePropertyEntry.cs
- DataGridRowAutomationPeer.cs
- AutomationPatternInfo.cs
- OleDbParameterCollection.cs
- LostFocusEventManager.cs
- TextInfo.cs
- SiteMapPath.cs
- PenThreadPool.cs
- MissingSatelliteAssemblyException.cs
- XamlPathDataSerializer.cs
- InvokeBase.cs
- DesignTimeTemplateParser.cs
- XmlSchemaProviderAttribute.cs
- ReferenceEqualityComparer.cs
- WebPartExportVerb.cs
- SerialPinChanges.cs
- X509Certificate.cs
- PlatformNotSupportedException.cs
- ObjectManager.cs
- CodeIdentifiers.cs
- IndexedString.cs
- DataControlFieldHeaderCell.cs
- IntegrationExceptionEventArgs.cs
- InputLanguageEventArgs.cs
- HtmlHistory.cs
- BaseDataList.cs
- XPathAncestorQuery.cs
- WebServiceMethodData.cs
- DocumentsTrace.cs
- EventBindingService.cs
- ChannelManagerBase.cs
- MeasureData.cs
- PageSettings.cs
- ListenerPerfCounters.cs
- RightsManagementUser.cs
- GestureRecognizer.cs
- EntityCommand.cs
- StyleSheetRefUrlEditor.cs
- configsystem.cs
- OLEDB_Util.cs
- ArraySet.cs
- ValidationError.cs
- FixedSOMPageConstructor.cs
- ScriptModule.cs
- Utils.cs
- BehaviorEditorPart.cs
- BCryptSafeHandles.cs
- RoutedPropertyChangedEventArgs.cs
- CompressStream.cs
- FieldCollectionEditor.cs
- CodeDomConfigurationHandler.cs
- DeflateStream.cs
- SiteMapNodeItem.cs
- CookieHandler.cs
- ViewBase.cs
- PrintDialogDesigner.cs
- PrimitiveXmlSerializers.cs
- DebuggerAttributes.cs
- StagingAreaInputItem.cs
- UmAlQuraCalendar.cs
- PagesSection.cs
- Camera.cs
- ContextMenuStripGroupCollection.cs
- LiteralControl.cs
- BaseParaClient.cs
- IdentifierService.cs
- Set.cs
- EntityDataSourceSelectedEventArgs.cs
- BrushValueSerializer.cs
- RadialGradientBrush.cs
- CultureTableRecord.cs
- DeviceContext.cs
- WindowsListViewItem.cs
- CommonProperties.cs
- EncoderNLS.cs
- PenThreadWorker.cs
- BypassElement.cs
- DrawingGroup.cs
- RegexRunnerFactory.cs
- TextFormatterImp.cs
- FileDialog.cs
- NavigationEventArgs.cs
- SoundPlayer.cs
- TextEditorThreadLocalStore.cs
- Label.cs
- cookieexception.cs
- ErrorFormatterPage.cs
- TimelineClockCollection.cs
- FlowDocumentView.cs
- ExecutionScope.cs
- CollectionViewProxy.cs
- LayoutTableCell.cs
- ReadingWritingEntityEventArgs.cs
- HybridDictionary.cs
- PlatformNotSupportedException.cs
- OrderingInfo.cs
- TreeView.cs
- TableItemStyle.cs
- MsmqTransportElement.cs