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
- ActionMessageFilterTable.cs
- EventMappingSettings.cs
- XmlILOptimizerVisitor.cs
- DataReaderContainer.cs
- ParameterCollection.cs
- ProfilePropertyMetadata.cs
- Image.cs
- CodeTypeDeclarationCollection.cs
- ComplexBindingPropertiesAttribute.cs
- WindowsFormsSectionHandler.cs
- SqlNodeTypeOperators.cs
- ActiveDocumentEvent.cs
- IISMapPath.cs
- FaultContractAttribute.cs
- HtmlLinkAdapter.cs
- ScopelessEnumAttribute.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- NotifyParentPropertyAttribute.cs
- XmlTextEncoder.cs
- TypedAsyncResult.cs
- FixedTextContainer.cs
- AbstractSvcMapFileLoader.cs
- XmlSignatureManifest.cs
- InputProcessorProfilesLoader.cs
- DesignerToolboxInfo.cs
- DeferredReference.cs
- ThreadPoolTaskScheduler.cs
- StrongNamePublicKeyBlob.cs
- GenericAuthenticationEventArgs.cs
- TokenBasedSet.cs
- MapPathBasedVirtualPathProvider.cs
- ValidatingReaderNodeData.cs
- ConfigurationSectionGroup.cs
- WebPartCollection.cs
- XamlGridLengthSerializer.cs
- EntityKey.cs
- XsltArgumentList.cs
- StorageScalarPropertyMapping.cs
- TemplateBuilder.cs
- XmlSerializerSection.cs
- EmbeddedMailObjectsCollection.cs
- NetTcpSection.cs
- log.cs
- Permission.cs
- SqlMultiplexer.cs
- IdentitySection.cs
- SqlClientWrapperSmiStreamChars.cs
- IntranetCredentialPolicy.cs
- SettingsPropertyWrongTypeException.cs
- MultilineStringEditor.cs
- SchemaImporterExtensionElement.cs
- RequestCacheManager.cs
- SafeThreadHandle.cs
- ConnectionPoint.cs
- UpdateEventArgs.cs
- Emitter.cs
- IntPtr.cs
- CompositeKey.cs
- SizeIndependentAnimationStorage.cs
- ServiceModelEnhancedConfigurationElementCollection.cs
- PerfCounterSection.cs
- Choices.cs
- DataReceivedEventArgs.cs
- IdentityModelStringsVersion1.cs
- SessionStateSection.cs
- AmbientValueAttribute.cs
- Token.cs
- DetailsView.cs
- StorageModelBuildProvider.cs
- SecurityBindingElement.cs
- SqlConnectionPoolGroupProviderInfo.cs
- PlainXmlSerializer.cs
- SubMenuStyle.cs
- DesignerVerbCollection.cs
- ModelPropertyImpl.cs
- SpotLight.cs
- UrlMappingCollection.cs
- ToolStripItemImageRenderEventArgs.cs
- NotifyCollectionChangedEventArgs.cs
- OpenFileDialog.cs
- GrammarBuilderWildcard.cs
- InputLanguageProfileNotifySink.cs
- CssTextWriter.cs
- WorkflowWebHostingModule.cs
- StreamGeometry.cs
- VisualStateGroup.cs
- IISMapPath.cs
- PropertyEmitter.cs
- ScriptBehaviorDescriptor.cs
- HtmlLiteralTextAdapter.cs
- ObjectDataSourceStatusEventArgs.cs
- EntityConnection.cs
- DependencyObjectPropertyDescriptor.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- TableAdapterManagerHelper.cs
- ElementMarkupObject.cs
- PackUriHelper.cs
- PropertyConverter.cs
- _SslSessionsCache.cs
- XmlChildEnumerator.cs