Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } } }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
- ToolStripContainer.cs
- AuthorizationRule.cs
- PtsContext.cs
- ToolStripDropDownButton.cs
- WebBrowser.cs
- MenuAdapter.cs
- HttpCapabilitiesEvaluator.cs
- EndCreateSecurityTokenRequest.cs
- Image.cs
- Descriptor.cs
- DataSourceExpression.cs
- XmlDocumentType.cs
- DetailsViewUpdateEventArgs.cs
- ClientSideProviderDescription.cs
- HashCodeCombiner.cs
- HttpHandlersSection.cs
- SerializationInfo.cs
- BufferCache.cs
- Vector3dCollection.cs
- GridViewRowCollection.cs
- JournalEntryListConverter.cs
- DocumentNUp.cs
- VariableQuery.cs
- ManagedWndProcTracker.cs
- RemotingSurrogateSelector.cs
- PersonalizationEntry.cs
- HtmlDocument.cs
- SafeNativeMethods.cs
- FloaterBaseParagraph.cs
- LightweightCodeGenerator.cs
- SqlDataSourceCommandEventArgs.cs
- DatatypeImplementation.cs
- GPStream.cs
- RegexGroup.cs
- SqlAggregateChecker.cs
- SystemUdpStatistics.cs
- CheckBoxStandardAdapter.cs
- LayoutManager.cs
- HtmlTable.cs
- WhereQueryOperator.cs
- Figure.cs
- DataGridViewTopLeftHeaderCell.cs
- Wildcard.cs
- ACE.cs
- RectConverter.cs
- COM2Enum.cs
- FormsAuthenticationModule.cs
- SqlTypesSchemaImporter.cs
- SqlUtils.cs
- FileSystemWatcher.cs
- ApplicationActivator.cs
- XmlSchemaType.cs
- ApplicationFileParser.cs
- ScrollChrome.cs
- Highlights.cs
- MetabaseServerConfig.cs
- OSFeature.cs
- AssemblyInfo.cs
- ButtonBaseAutomationPeer.cs
- ProtocolElementCollection.cs
- ReaderWriterLockWrapper.cs
- CodeMemberEvent.cs
- FontUnit.cs
- OneWayChannelListener.cs
- DesignerDataConnection.cs
- HostedBindingBehavior.cs
- sqlcontext.cs
- QueuedDeliveryRequirementsMode.cs
- TemplateEditingService.cs
- RoleExceptions.cs
- _NetRes.cs
- ListItemCollection.cs
- XmlUtf8RawTextWriter.cs
- DBPropSet.cs
- SmtpCommands.cs
- HttpRawResponse.cs
- GridViewCancelEditEventArgs.cs
- FixedSOMSemanticBox.cs
- TextElementEnumerator.cs
- StrokeNode.cs
- InheritedPropertyChangedEventArgs.cs
- TableCellAutomationPeer.cs
- ResourcePart.cs
- RefreshEventArgs.cs
- LingerOption.cs
- DataTableReaderListener.cs
- DocumentNUp.cs
- ViewBase.cs
- TreePrinter.cs
- StandardCommands.cs
- UICuesEvent.cs
- BufferModeSettings.cs
- ImageSource.cs
- SqlConnectionString.cs
- GeneralTransform2DTo3DTo2D.cs
- BaseParaClient.cs
- UnsafeNativeMethods.cs
- HttpConfigurationSystem.cs
- RawTextInputReport.cs
- ReflectionUtil.cs