Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / UI / WebControls / ListViewDeleteEventArgs.cs / 1305376 / ListViewDeleteEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Specialized; using System.ComponentModel; namespace System.Web.UI.WebControls { public class ListViewDeleteEventArgs : CancelEventArgs { private int _itemIndex; private OrderedDictionary _values; private OrderedDictionary _keys; public ListViewDeleteEventArgs(int itemIndex) : base(false) { _itemIndex = itemIndex; } ////// public int ItemIndex { get { return _itemIndex; } } ///Gets the int argument to the command posted to the ///. This property is read-only. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } ///Gets a keyed list to populate with updated row values. 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 OrderedDictionary to populate with updated row values. This property is read-only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ApplicationServicesHostFactory.cs
- StrokeNodeData.cs
- XmlEnumAttribute.cs
- ReadWriteObjectLock.cs
- CodeExpressionCollection.cs
- SerializationSectionGroup.cs
- TextEndOfLine.cs
- MSAAWinEventWrap.cs
- FileDetails.cs
- InvokePatternIdentifiers.cs
- ManipulationLogic.cs
- MailMessage.cs
- TemplateBindingExtension.cs
- Aes.cs
- WriterOutput.cs
- TreeViewEvent.cs
- ContentFilePart.cs
- BlockingCollection.cs
- __Filters.cs
- PlaceHolder.cs
- FrameworkName.cs
- RemotingSurrogateSelector.cs
- FacetChecker.cs
- OleDbTransaction.cs
- PermissionRequestEvidence.cs
- MasterPageParser.cs
- ParseElement.cs
- SecurityDescriptor.cs
- DeleteIndexBinder.cs
- HttpCacheVaryByContentEncodings.cs
- DataKeyArray.cs
- KeyValueConfigurationCollection.cs
- TypeListConverter.cs
- TemplateContentLoader.cs
- ObjectManager.cs
- EntityDataSourceState.cs
- panel.cs
- ProfessionalColors.cs
- _ConnectionGroup.cs
- HybridObjectCache.cs
- ImageBrush.cs
- WSFederationHttpSecurityElement.cs
- Pair.cs
- CurrentTimeZone.cs
- ScrollBarRenderer.cs
- SyndicationSerializer.cs
- QueryCorrelationInitializer.cs
- DbProviderFactory.cs
- ParserOptions.cs
- BindingMAnagerBase.cs
- CompModHelpers.cs
- WebHeaderCollection.cs
- Transform3D.cs
- CompilerTypeWithParams.cs
- AutoCompleteStringCollection.cs
- Polyline.cs
- SqlUserDefinedAggregateAttribute.cs
- GlyphRun.cs
- ObjectPropertyMapping.cs
- DirectoryObjectSecurity.cs
- Tokenizer.cs
- CheckBoxAutomationPeer.cs
- XmlEventCache.cs
- URIFormatException.cs
- SignatureHelper.cs
- ContentPropertyAttribute.cs
- BindingParameterCollection.cs
- IsolationInterop.cs
- ContentPresenter.cs
- ObjectItemCollection.cs
- _CookieModule.cs
- DelayedRegex.cs
- EmptyStringExpandableObjectConverter.cs
- LoginView.cs
- MediaEntryAttribute.cs
- ProjectionRewriter.cs
- EventLogWatcher.cs
- WebHttpElement.cs
- Matrix.cs
- OracleParameterBinding.cs
- SqlDataSourceCommandEventArgs.cs
- ItemsChangedEventArgs.cs
- SID.cs
- DataViewManagerListItemTypeDescriptor.cs
- RequestQueryProcessor.cs
- SecurityRuntime.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- AuthenticatingEventArgs.cs
- EventMemberCodeDomSerializer.cs
- SchemaInfo.cs
- ClientSettingsStore.cs
- XPathDocumentBuilder.cs
- _ConnectionGroup.cs
- UInt16.cs
- XmlDataSource.cs
- ErrorWebPart.cs
- CompositeTypefaceMetrics.cs
- MD5CryptoServiceProvider.cs
- InvalidContentTypeException.cs
- Camera.cs