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
- UmAlQuraCalendar.cs
- WebPartCatalogCloseVerb.cs
- GroupByExpressionRewriter.cs
- DispatchRuntime.cs
- SessionPageStateSection.cs
- ConditionedDesigner.cs
- FormsAuthenticationUser.cs
- ProgressiveCrcCalculatingStream.cs
- ToolStripPanelCell.cs
- AssemblyResourceLoader.cs
- TableItemPatternIdentifiers.cs
- TreeNodeBinding.cs
- Registry.cs
- DataGridViewAdvancedBorderStyle.cs
- BindingSource.cs
- MarginCollapsingState.cs
- Exceptions.cs
- GuidConverter.cs
- RelatedEnd.cs
- MimeTypePropertyAttribute.cs
- ButtonStandardAdapter.cs
- PrimitiveType.cs
- PolyBezierSegmentFigureLogic.cs
- PackageDigitalSignatureManager.cs
- DecoderNLS.cs
- DataSourceViewSchemaConverter.cs
- XPathNavigator.cs
- AttributeXamlType.cs
- Bold.cs
- XmlEnumAttribute.cs
- Part.cs
- CodeThrowExceptionStatement.cs
- XamlFigureLengthSerializer.cs
- OdbcCommand.cs
- ExtendLockAsyncResult.cs
- OrderablePartitioner.cs
- StateFinalizationDesigner.cs
- DictionaryGlobals.cs
- PointLight.cs
- StateDesignerConnector.cs
- OrderByBuilder.cs
- WindowsFormsEditorServiceHelper.cs
- WinFormsUtils.cs
- SqlGatherProducedAliases.cs
- StringBlob.cs
- IntegerValidator.cs
- ContextQuery.cs
- DataGridItemAttachedStorage.cs
- DependentList.cs
- FontStretch.cs
- SecureStringHasher.cs
- GridViewRow.cs
- PopupRootAutomationPeer.cs
- ServiceHostingEnvironmentSection.cs
- Roles.cs
- CmsUtils.cs
- WebPartChrome.cs
- StrongNameUtility.cs
- RelatedView.cs
- CorrelationTokenInvalidatedHandler.cs
- DefaultBinder.cs
- PeerObject.cs
- ToolStripContainerDesigner.cs
- LoginName.cs
- Parsers.cs
- XsdBuildProvider.cs
- VersionValidator.cs
- HttpClientChannel.cs
- DataIdProcessor.cs
- TaiwanLunisolarCalendar.cs
- InputScopeManager.cs
- SmtpLoginAuthenticationModule.cs
- COAUTHIDENTITY.cs
- DataControlImageButton.cs
- StringSorter.cs
- FillRuleValidation.cs
- HtmlTableRowCollection.cs
- ZipIOCentralDirectoryFileHeader.cs
- RemoteWebConfigurationHost.cs
- WebPartsPersonalizationAuthorization.cs
- GeometryHitTestParameters.cs
- Repeater.cs
- Monitor.cs
- SqlUserDefinedAggregateAttribute.cs
- ElementsClipboardData.cs
- SqlTypesSchemaImporter.cs
- TraceContextEventArgs.cs
- DoubleCollectionConverter.cs
- _LocalDataStoreMgr.cs
- Listbox.cs
- PageThemeBuildProvider.cs
- FlowDocumentPage.cs
- HttpWriter.cs
- PageAsyncTaskManager.cs
- MasterPageParser.cs
- ClientFormsIdentity.cs
- SiteMapDataSourceView.cs
- FilterQuery.cs
- DynamicRenderer.cs
- Exceptions.cs