Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewDeleteEventArgs.cs / 1305376 / FormViewDeleteEventArgs.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 FormViewDeleteEventArgs : CancelEventArgs { private int _rowIndex; private OrderedDictionary _keys; private OrderedDictionary _values; ///Provides data for some ///events. /// public FormViewDeleteEventArgs(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
- LogReservationCollection.cs
- dtdvalidator.cs
- EnumerableRowCollection.cs
- DocumentReferenceCollection.cs
- TimeoutConverter.cs
- ButtonChrome.cs
- SettingsProviderCollection.cs
- Renderer.cs
- SqlEnums.cs
- RowCache.cs
- XmlSchemaImporter.cs
- Knowncolors.cs
- IndentTextWriter.cs
- ArgumentNullException.cs
- StylusCollection.cs
- OutputCacheProfileCollection.cs
- ListDictionaryInternal.cs
- AdCreatedEventArgs.cs
- ExpressionBinding.cs
- WindowPattern.cs
- CmsInterop.cs
- MailAddressParser.cs
- DBCSCodePageEncoding.cs
- ScrollBar.cs
- RectKeyFrameCollection.cs
- FormDesigner.cs
- OdbcInfoMessageEvent.cs
- ObjectTag.cs
- HwndSource.cs
- MappingException.cs
- PaginationProgressEventArgs.cs
- DodSequenceMerge.cs
- QueryModel.cs
- TimeSpanConverter.cs
- X509WindowsSecurityToken.cs
- TransformedBitmap.cs
- XmlSchemaAnyAttribute.cs
- CollectionViewGroup.cs
- BamlRecordHelper.cs
- MultipartIdentifier.cs
- DataGridViewComboBoxCell.cs
- WebControlsSection.cs
- EmptyReadOnlyDictionaryInternal.cs
- BaseDataListActionList.cs
- EventTrigger.cs
- PopOutPanel.cs
- DefaultObjectMappingItemCollection.cs
- PolyBezierSegment.cs
- WebRequest.cs
- RequestTimeoutManager.cs
- MemoryFailPoint.cs
- ListComponentEditorPage.cs
- SiteMapDesignerDataSourceView.cs
- PropertyEmitter.cs
- StringUtil.cs
- ValueProviderWrapper.cs
- DataGridColumnHeadersPresenter.cs
- UDPClient.cs
- CursorConverter.cs
- TokenFactoryFactory.cs
- DateBoldEvent.cs
- XmlSchemaCollection.cs
- ListControl.cs
- CalendarDay.cs
- XmlCountingReader.cs
- EditorZone.cs
- Button.cs
- FileUtil.cs
- ListViewHitTestInfo.cs
- Column.cs
- ClientFormsIdentity.cs
- FormatException.cs
- FlowNode.cs
- XamlGridLengthSerializer.cs
- SchemaAttDef.cs
- PaperSource.cs
- InputLanguageCollection.cs
- WebPartExportVerb.cs
- TextDpi.cs
- WinFormsSecurity.cs
- UnsafeNativeMethods.cs
- _NestedSingleAsyncResult.cs
- HyperLinkColumn.cs
- MatrixStack.cs
- XmlBinaryReader.cs
- JoinTreeSlot.cs
- TreeNodeStyle.cs
- ValidatingPropertiesEventArgs.cs
- ListViewAutomationPeer.cs
- OutputCacheEntry.cs
- WindowProviderWrapper.cs
- LinearGradientBrush.cs
- SqlDataRecord.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- InplaceBitmapMetadataWriter.cs
- COAUTHINFO.cs
- TagNameToTypeMapper.cs
- AsymmetricKeyExchangeFormatter.cs
- EventPrivateKey.cs
- NavigationWindow.cs