1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
//------------------------------------------------------------------------------
// <copyright file="ListViewUpdateEventArgs.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections.Specialized;
using System.ComponentModel;
namespace System.Web.UI.WebControls {
public class ListViewUpdateEventArgs : CancelEventArgs {
private int _itemIndex;
private OrderedDictionary _values;
private OrderedDictionary _keys;
private OrderedDictionary _oldValues;
public ListViewUpdateEventArgs(int itemIndex) {
_itemIndex = itemIndex;
}
/// <devdoc>
/// <para>Gets the int argument to the command posted to the <see cref='System.Web.UI.WebControls.ListView'/>. This property is read-only.</para>
/// </devdoc>
public int ItemIndex {
get {
return _itemIndex;
}
}
/// <devdoc>
/// <para>Gets a keyed list to populate with updated row values. This property is read-only.</para>
/// </devdoc>
public IOrderedDictionary Keys {
get {
if (_keys == null) {
_keys = new OrderedDictionary();
}
return _keys;
}
}
/// <devdoc>
/// <para>Gets a OrderedDictionary to populate with updated row values. This property is read-only.</para>
/// </devdoc>
public IOrderedDictionary NewValues {
get {
if (_values == null) {
_values = new OrderedDictionary();
}
return _values;
}
}
/// <devdoc>
/// <para>Gets a OrderedDictionary to populate with pre-edit row values. This property is read-only.</para>
/// </devdoc>
public IOrderedDictionary OldValues {
get {
if (_oldValues == null) {
_oldValues = new OrderedDictionary();
}
return _oldValues;
}
}
}
}
|