Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewDeleteEventArgs.cs / 1 / DetailsViewDeleteEventArgs.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 DetailsViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public DetailsViewDeleteEventArgs(int rowIndex) : base(false) { this._rowIndex = rowIndex; } public int RowIndex { get { return _rowIndex; } } ///Initializes a new instance of the ////// class. /// 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
- Span.cs
- DictionarySectionHandler.cs
- Control.cs
- QuestionEventArgs.cs
- GradientStopCollection.cs
- PageAction.cs
- ContentDefinition.cs
- DiscoveryReferences.cs
- DataViewListener.cs
- ActivityBuilderHelper.cs
- DataGridViewRowEventArgs.cs
- CharacterMetrics.cs
- WsdlInspector.cs
- TabControlEvent.cs
- TemplateBaseAction.cs
- TextDecoration.cs
- DataPointer.cs
- WindowVisualStateTracker.cs
- AuthenticationException.cs
- HtmlControlPersistable.cs
- CrossSiteScriptingValidation.cs
- BamlTreeUpdater.cs
- DesignTable.cs
- MultiSelector.cs
- ServiceHostingEnvironment.cs
- GridViewRowPresenter.cs
- RequestCacheEntry.cs
- IUnknownConstantAttribute.cs
- CodeGotoStatement.cs
- NativeMethods.cs
- X509ChainPolicy.cs
- CountAggregationOperator.cs
- TrackBarRenderer.cs
- TypeKeyValue.cs
- TransportContext.cs
- SchemaDeclBase.cs
- storepermissionattribute.cs
- DataListComponentEditor.cs
- LogLogRecordEnumerator.cs
- EventLogHandle.cs
- Sql8ExpressionRewriter.cs
- XamlPointCollectionSerializer.cs
- Events.cs
- DbProviderFactory.cs
- Stopwatch.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ICspAsymmetricAlgorithm.cs
- ToolStripLabel.cs
- JsonUriDataContract.cs
- cache.cs
- StrokeNodeEnumerator.cs
- Context.cs
- ConfigurationPermission.cs
- TypeDescriptionProviderAttribute.cs
- StoreAnnotationsMap.cs
- GeometryConverter.cs
- SetStoryboardSpeedRatio.cs
- PreviewPrintController.cs
- BigInt.cs
- HttpResponse.cs
- TextModifierScope.cs
- Parameter.cs
- MainMenu.cs
- StyleHelper.cs
- EntityDataSourceEntityTypeFilterItem.cs
- UInt32Storage.cs
- WriteableBitmap.cs
- RoutedEventArgs.cs
- SiteMapSection.cs
- EventListener.cs
- UnsafeNativeMethods.cs
- MachinePropertyVariants.cs
- XmlProcessingInstruction.cs
- EditorAttribute.cs
- ProcessThread.cs
- SoapMessage.cs
- Stylus.cs
- Utils.cs
- ColorMatrix.cs
- WebServiceEndpoint.cs
- HttpModule.cs
- BatchParser.cs
- ResourceSet.cs
- DataGridViewCellParsingEventArgs.cs
- SystemException.cs
- DesignerMetadata.cs
- ClientSettings.cs
- PrimaryKeyTypeConverter.cs
- Utility.cs
- ConfigXmlSignificantWhitespace.cs
- SortedSetDebugView.cs
- Membership.cs
- Point3DAnimation.cs
- XmlQueryOutput.cs
- InputLanguageSource.cs
- RemoteAsymmetricSignatureFormatter.cs
- HttpModuleActionCollection.cs
- EntityDataSourceDesignerHelper.cs
- CheckBoxAutomationPeer.cs
- SmtpDigestAuthenticationModule.cs