4 instantiations of Key
System.Web (4)
UI\WebParts\PersonalizationStateInfoCollection.cs (4)
45Key key = new Key(path, username); 68key = new Key(userData.Path, userData.Username); 71key = new Key(data.Path, null); 121Key key = new Key(path, username);
16 references to Key
System.Web (16)
UI\WebParts\PersonalizationStateInfoCollection.cs (16)
16private Dictionary<Key, int> _indices; 29_indices = new Dictionary<Key, int>(KeyComparer.Default); 45Key key = new Key(path, username); 65Key key; 121Key key = new Key(path, username); 140foreach(KeyValuePair<Key,int> de in _indices) { 145foreach (Key k in al) { 181private sealed class KeyComparer : IEqualityComparer<Key> { 182internal static readonly IEqualityComparer<Key> Default = new KeyComparer(); 184bool IEqualityComparer<Key>.Equals(Key x, Key y) { 188int IEqualityComparer<Key>.GetHashCode(Key key) { 202private int Compare(Key x, Key y) {