Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewDeleteEventArgs.cs / 1 / 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; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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. // 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
- SqlAggregateChecker.cs
- StopStoryboard.cs
- BuilderElements.cs
- Model3D.cs
- Function.cs
- FloatAverageAggregationOperator.cs
- Registry.cs
- ObjectQueryState.cs
- HostExecutionContextManager.cs
- FontCacheLogic.cs
- RequestUriProcessor.cs
- ControlDesigner.cs
- DynamicRendererThreadManager.cs
- _FtpControlStream.cs
- JavaScriptObjectDeserializer.cs
- SqlUserDefinedTypeAttribute.cs
- RewritingPass.cs
- ListViewItemCollectionEditor.cs
- InputBinder.cs
- LinqDataSourceView.cs
- GeometryModel3D.cs
- TransformGroup.cs
- ProxyWebPart.cs
- ReferencedCollectionType.cs
- ConvertersCollection.cs
- CryptoHandle.cs
- TableLayoutPanel.cs
- HorizontalAlignConverter.cs
- SqlRowUpdatingEvent.cs
- Model3DGroup.cs
- CharacterShapingProperties.cs
- MobilePage.cs
- ControlEvent.cs
- Win32Exception.cs
- SpellerInterop.cs
- FileDialog_Vista_Interop.cs
- Part.cs
- BitArray.cs
- SQLStringStorage.cs
- SystemInfo.cs
- GeneralTransformCollection.cs
- CanonicalFormWriter.cs
- DivideByZeroException.cs
- TargetException.cs
- Int32RectConverter.cs
- ActivityMarkupSerializationProvider.cs
- ExtensionSimplifierMarkupObject.cs
- ExpandSegmentCollection.cs
- ProjectedWrapper.cs
- BuildProvider.cs
- ResizeGrip.cs
- ViewStateException.cs
- MouseDevice.cs
- ZipIOLocalFileHeader.cs
- DbSetClause.cs
- GridViewPageEventArgs.cs
- HwndTarget.cs
- DataGridRow.cs
- ObjectListCommandEventArgs.cs
- TypeTypeConverter.cs
- WriteableBitmap.cs
- ADConnectionHelper.cs
- Cursors.cs
- EntityAdapter.cs
- WebPartMinimizeVerb.cs
- PropertyInfoSet.cs
- HotSpotCollection.cs
- Thread.cs
- MasterPage.cs
- PtsPage.cs
- EventMemberCodeDomSerializer.cs
- PointConverter.cs
- ReadOnlyDataSource.cs
- ConnectionOrientedTransportBindingElement.cs
- MachineKeyConverter.cs
- XmlDataDocument.cs
- NameValueFileSectionHandler.cs
- CDSsyncETWBCLProvider.cs
- CategoryValueConverter.cs
- Wizard.cs
- DiffuseMaterial.cs
- XPathNavigatorKeyComparer.cs
- ApplicationActivator.cs
- Config.cs
- ObjectListComponentEditor.cs
- PackageRelationship.cs
- ResourceContainer.cs
- FormViewCommandEventArgs.cs
- StreamDocument.cs
- TableLayoutSettingsTypeConverter.cs
- MeasureItemEvent.cs
- RSACryptoServiceProvider.cs
- FileCodeGroup.cs
- MimeParameterWriter.cs
- SocketInformation.cs
- XmlDictionaryWriter.cs
- FtpCachePolicyElement.cs
- StylusCollection.cs
- MemoryFailPoint.cs
- MatchAttribute.cs