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
- TcpTransportSecurity.cs
- Types.cs
- SessionEndedEventArgs.cs
- TcpClientSocketManager.cs
- mansign.cs
- _FtpControlStream.cs
- SiblingIterators.cs
- CodeSnippetTypeMember.cs
- DtdParser.cs
- GroupStyle.cs
- HttpCapabilitiesSectionHandler.cs
- _Win32.cs
- MatrixUtil.cs
- XmlMemberMapping.cs
- HttpContextServiceHost.cs
- SafePointer.cs
- SecurityElement.cs
- GridViewCancelEditEventArgs.cs
- Image.cs
- WsdlImporter.cs
- ThreadSafeMessageFilterTable.cs
- WebBrowsableAttribute.cs
- ToolStripStatusLabel.cs
- ThemeConfigurationDialog.cs
- ElementProxy.cs
- HtmlInputText.cs
- DataServiceQueryProvider.cs
- MailSettingsSection.cs
- AnimationStorage.cs
- LowerCaseStringConverter.cs
- CreateParams.cs
- ButtonChrome.cs
- DataGridViewCellCancelEventArgs.cs
- CodeAttachEventStatement.cs
- Missing.cs
- OracleLob.cs
- MemberAccessException.cs
- MachineKeyConverter.cs
- XpsS0ValidatingLoader.cs
- TabItemAutomationPeer.cs
- SrgsElementFactoryCompiler.cs
- WriteTimeStream.cs
- DependencyPropertyConverter.cs
- UntypedNullExpression.cs
- FamilyTypeface.cs
- ClientSettingsStore.cs
- CodeGenHelper.cs
- BatchWriter.cs
- WorkflowElementDialogWindow.xaml.cs
- DataException.cs
- SafeReversePInvokeHandle.cs
- DataGridViewUtilities.cs
- XmlSchemaParticle.cs
- StorageScalarPropertyMapping.cs
- QilFactory.cs
- DbProviderFactory.cs
- BitmapMetadata.cs
- InputDevice.cs
- RawStylusInputCustomData.cs
- CustomErrorCollection.cs
- ToolStripSettings.cs
- WhitespaceSignificantCollectionAttribute.cs
- ExceptionHandlerDesigner.cs
- COM2ComponentEditor.cs
- PropertyDescriptorCollection.cs
- IsolatedStorageFileStream.cs
- LoginView.cs
- DataGridCaption.cs
- cookiecontainer.cs
- BamlVersionHeader.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- DataSet.cs
- TextBox.cs
- BindableTemplateBuilder.cs
- FileDialogPermission.cs
- StringWriter.cs
- Margins.cs
- XNameTypeConverter.cs
- Calendar.cs
- DataGridViewImageCell.cs
- ToolStripCustomTypeDescriptor.cs
- Utils.cs
- ResourceDescriptionAttribute.cs
- WebRequestModuleElement.cs
- CompositeFontInfo.cs
- TextTabProperties.cs
- RangeBaseAutomationPeer.cs
- TextViewElement.cs
- BaseTreeIterator.cs
- PreservationFileWriter.cs
- BaseParaClient.cs
- Pen.cs
- BasicCellRelation.cs
- Span.cs
- ContentIterators.cs
- Compiler.cs
- Themes.cs
- PlaceHolder.cs
- SchemaCreator.cs
- XmlDocumentFieldSchema.cs