//------------------------------------------------------------------------------ // // 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; } /// /// Gets the int argument to the command posted to the . This property is read-only. /// public int ItemIndex { get { return _itemIndex; } } /// /// Gets a keyed list to populate with updated row values. This property is read-only. /// public IOrderedDictionary Keys { get { if (_keys == null) { _keys = new OrderedDictionary(); } return _keys; } } /// /// Gets a OrderedDictionary to populate with updated row values. This property is read-only. /// public IOrderedDictionary Values { get { if (_values == null) { _values = new OrderedDictionary(); } return _values; } } } }