Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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. // Copyright (c) Microsoft Corporation. All rights reserved.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
- StdValidatorsAndConverters.cs
- GridPattern.cs
- PropertyDescriptorGridEntry.cs
- XmlHierarchicalEnumerable.cs
- SafeRightsManagementEnvironmentHandle.cs
- ColumnCollection.cs
- DataGridViewLayoutData.cs
- SecurityChannelFaultConverter.cs
- Clipboard.cs
- ResourceDictionary.cs
- MsmqIntegrationChannelListener.cs
- ToolboxComponentsCreatedEventArgs.cs
- UrlParameterReader.cs
- WorkflowMessageEventArgs.cs
- DefaultMemberAttribute.cs
- InvalidOperationException.cs
- DesignerDataSourceView.cs
- InvalidAsynchronousStateException.cs
- BmpBitmapDecoder.cs
- activationcontext.cs
- DrawingBrush.cs
- ConfigurationPermission.cs
- PropertyGeneratedEventArgs.cs
- Timer.cs
- SafeHandles.cs
- Util.cs
- AppDomainProtocolHandler.cs
- MSG.cs
- SQLUtility.cs
- EncryptedType.cs
- ConnectionPoint.cs
- HuffCodec.cs
- SHA512Managed.cs
- EmptyCollection.cs
- RegexBoyerMoore.cs
- _AutoWebProxyScriptHelper.cs
- documentsequencetextpointer.cs
- DataGridViewLayoutData.cs
- DynamicPropertyHolder.cs
- UnknownWrapper.cs
- FunctionParameter.cs
- PerspectiveCamera.cs
- ConnectionConsumerAttribute.cs
- SamlAuthorizationDecisionStatement.cs
- ScriptDescriptor.cs
- SystemIPInterfaceStatistics.cs
- InternalBufferOverflowException.cs
- OdbcError.cs
- KeysConverter.cs
- PolyLineSegmentFigureLogic.cs
- DirectoryNotFoundException.cs
- ProviderSettingsCollection.cs
- RequestBringIntoViewEventArgs.cs
- StylusPlugin.cs
- ValuePatternIdentifiers.cs
- TransformedBitmap.cs
- ThumbAutomationPeer.cs
- PathGeometry.cs
- DesignerForm.cs
- HealthMonitoringSection.cs
- Freezable.cs
- altserialization.cs
- Util.cs
- QueryIntervalOp.cs
- CatalogZone.cs
- WindowInteropHelper.cs
- InfoCardTrace.cs
- BindingGroup.cs
- Vars.cs
- MDIClient.cs
- MessageEncodingBindingElement.cs
- LiteralLink.cs
- AddressingVersion.cs
- MimeReflector.cs
- TransactionOptions.cs
- CompareInfo.cs
- DtrList.cs
- ListViewItemSelectionChangedEvent.cs
- ExecutedRoutedEventArgs.cs
- ServiceNameCollection.cs
- UserNameSecurityTokenProvider.cs
- List.cs
- FormViewInsertedEventArgs.cs
- XPathConvert.cs
- DataQuery.cs
- AsyncStreamReader.cs
- EncoderReplacementFallback.cs
- DispatcherEventArgs.cs
- EmptyStringExpandableObjectConverter.cs
- BooleanExpr.cs
- HeaderedContentControl.cs
- ObjectStateFormatter.cs
- FilterException.cs
- MarshalByRefObject.cs
- GetWinFXPath.cs
- CollectionDataContractAttribute.cs
- _SslSessionsCache.cs
- XmlNamespaceDeclarationsAttribute.cs
- TableDesigner.cs
- RootNamespaceAttribute.cs