Code:
/ FX-1434 / FX-1434 / 1.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
- PropertyInfoSet.cs
- FontStretchConverter.cs
- IERequestCache.cs
- FileUtil.cs
- SqlConnection.cs
- DataServiceQuery.cs
- RightsManagementResourceHelper.cs
- FormsAuthenticationModule.cs
- LOSFormatter.cs
- GridViewColumnHeader.cs
- DispatcherExceptionEventArgs.cs
- BinaryMessageEncoder.cs
- EnvironmentPermission.cs
- ImageAttributes.cs
- unitconverter.cs
- EnumerableRowCollectionExtensions.cs
- MediaContextNotificationWindow.cs
- StrokeRenderer.cs
- ObjectIDGenerator.cs
- StretchValidation.cs
- EntityCommandCompilationException.cs
- FrameworkContentElement.cs
- SQLMoney.cs
- CodeCompileUnit.cs
- TextSegment.cs
- TextServicesContext.cs
- FlowDocumentPaginator.cs
- TextureBrush.cs
- SqlRowUpdatingEvent.cs
- GregorianCalendarHelper.cs
- HybridDictionary.cs
- MULTI_QI.cs
- cookieexception.cs
- BamlVersionHeader.cs
- AccessDataSourceView.cs
- FormsAuthenticationCredentials.cs
- BitmapVisualManager.cs
- XmlNodeWriter.cs
- QueueException.cs
- mongolianshape.cs
- SqlFactory.cs
- IntSecurity.cs
- HttpRequestBase.cs
- DataTemplateKey.cs
- ReliableMessagingHelpers.cs
- EntityDataSourceSelectingEventArgs.cs
- Environment.cs
- BinaryWriter.cs
- ColorMap.cs
- SuppressIldasmAttribute.cs
- XmlMapping.cs
- XmlSchemaSimpleType.cs
- connectionpool.cs
- _ListenerAsyncResult.cs
- XPathNavigatorReader.cs
- DoubleCollection.cs
- DriveNotFoundException.cs
- Point3DCollection.cs
- Stack.cs
- DataGrid.cs
- HybridDictionary.cs
- DataShape.cs
- ControlCollection.cs
- XPathDocumentIterator.cs
- COM2ICategorizePropertiesHandler.cs
- PointHitTestResult.cs
- DefaultTextStore.cs
- XPathCompileException.cs
- EnumBuilder.cs
- x509store.cs
- EventlogProvider.cs
- IndicShape.cs
- activationcontext.cs
- ValidationSummary.cs
- _SecureChannel.cs
- COM2PropertyPageUITypeConverter.cs
- LinearGradientBrush.cs
- XmlSerializationGeneratedCode.cs
- TextInfo.cs
- FileFormatException.cs
- ConnectionManagementElementCollection.cs
- TextChangedEventArgs.cs
- MimeMapping.cs
- MissingMemberException.cs
- HttpFileCollection.cs
- SqlClientMetaDataCollectionNames.cs
- SerializableAttribute.cs
- WindowsFormsHost.cs
- RecipientInfo.cs
- BitStream.cs
- XmlSchemaAppInfo.cs
- ButtonFieldBase.cs
- RC2CryptoServiceProvider.cs
- ToolStripDropDownItem.cs
- PropertyValueUIItem.cs
- BaseDataListActionList.cs
- ArrayWithOffset.cs
- LocalClientSecuritySettings.cs
- PositiveTimeSpanValidator.cs
- AnimationException.cs