Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DetailsViewDeleteEventArgs.cs / 1305376 / 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; ////// 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.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
- MsmqMessage.cs
- PropertyHelper.cs
- ItemsControlAutomationPeer.cs
- ObjectDisposedException.cs
- processwaithandle.cs
- BamlLocalizableResourceKey.cs
- EnumConverter.cs
- AssemblyName.cs
- DataSourceControlBuilder.cs
- XPathNodePointer.cs
- PointAnimation.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- RemotingConfigParser.cs
- SignatureHelper.cs
- InternalBufferOverflowException.cs
- DocumentApplication.cs
- ImageKeyConverter.cs
- IODescriptionAttribute.cs
- CapabilitiesSection.cs
- TextTreeRootNode.cs
- TextRangeBase.cs
- ListView.cs
- MsmqOutputMessage.cs
- ConnectionStringsExpressionBuilder.cs
- ComponentEditorForm.cs
- DropShadowEffect.cs
- FileLoadException.cs
- ClientApiGenerator.cs
- AssociationSetMetadata.cs
- ExitEventArgs.cs
- WebPartAuthorizationEventArgs.cs
- PageSetupDialog.cs
- Size.cs
- XmlAnyElementAttributes.cs
- XPathExpr.cs
- BaseProcessor.cs
- GridViewEditEventArgs.cs
- Rijndael.cs
- SqlParameterizer.cs
- ClientTargetCollection.cs
- SyndicationDeserializer.cs
- CompilationPass2TaskInternal.cs
- DialogResultConverter.cs
- DetailsViewDeletedEventArgs.cs
- ToolStripOverflow.cs
- SafeBuffer.cs
- NullableFloatMinMaxAggregationOperator.cs
- IsolatedStorageFilePermission.cs
- XmlText.cs
- TextEditorContextMenu.cs
- DataGridState.cs
- DbConnectionFactory.cs
- RealProxy.cs
- EventHandlerService.cs
- RequestCache.cs
- RegexCode.cs
- PersistenceMetadataNamespace.cs
- ValidationHelper.cs
- ActivationWorker.cs
- DriveNotFoundException.cs
- SqlNotificationRequest.cs
- FileCodeGroup.cs
- JulianCalendar.cs
- WebEventCodes.cs
- DataGridRelationshipRow.cs
- XmlHelper.cs
- SqlUnionizer.cs
- VariableReference.cs
- SystemWebCachingSectionGroup.cs
- ScriptComponentDescriptor.cs
- VisualBasicHelper.cs
- SelectionPattern.cs
- WarningException.cs
- ExternalFile.cs
- Vector3DConverter.cs
- EntityDataSourceColumn.cs
- ForeignConstraint.cs
- OdbcPermission.cs
- ArgumentValueSerializer.cs
- GeneralTransform.cs
- Domain.cs
- FactoryMaker.cs
- TriggerAction.cs
- ToolBarButton.cs
- RedistVersionInfo.cs
- JoinGraph.cs
- Synchronization.cs
- XmlSerializerNamespaces.cs
- RadioButtonList.cs
- SvcMapFile.cs
- ObjectQueryState.cs
- WindowsGraphics.cs
- FormViewInsertEventArgs.cs
- RunInstallerAttribute.cs
- ContentTextAutomationPeer.cs
- StringCollectionEditor.cs
- TableRowGroup.cs
- EventItfInfo.cs
- ReversePositionQuery.cs
- HttpProcessUtility.cs