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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.Runtime
{
using System.Collections;
using System.Collections.Generic;
// This class is for back-compat with 4.0, where we exposed read-only dictionaries that threw
// InvalidOperation if mutated. Any new usages should use the CLR's public ReadOnlyDictionary
// (which throws NotSupported).
[Serializable]
class ReadOnlyDictionaryInternal<TKey, TValue> : IDictionary<TKey, TValue>
{
IDictionary<TKey, TValue> dictionary;
public ReadOnlyDictionaryInternal(IDictionary<TKey, TValue> dictionary)
{
this.dictionary = dictionary;
}
public int Count
{
get { return this.dictionary.Count; }
}
public bool IsReadOnly
{
get { return true; }
}
public ICollection<TKey> Keys
{
get { return this.dictionary.Keys; }
}
public ICollection<TValue> Values
{
get { return this.dictionary.Values; }
}
public TValue this[TKey key]
{
get
{
return this.dictionary[key];
}
set
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
}
public static IDictionary<TKey, TValue> Create(IDictionary<TKey, TValue> dictionary)
{
if (dictionary.IsReadOnly)
{
return dictionary;
}
else
{
return new ReadOnlyDictionaryInternal<TKey, TValue>(dictionary);
}
}
Exception CreateReadOnlyException()
{
return new InvalidOperationException(InternalSR.DictionaryIsReadOnly);
}
public void Add(TKey key, TValue value)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Add(KeyValuePair<TKey, TValue> item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public void Clear()
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Contains(KeyValuePair<TKey, TValue> item)
{
return this.dictionary.Contains(item);
}
public bool ContainsKey(TKey key)
{
return this.dictionary.ContainsKey(key);
}
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
{
this.dictionary.CopyTo(array, arrayIndex);
}
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return this.dictionary.GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return this.GetEnumerator();
}
public bool Remove(TKey key)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool Remove(KeyValuePair<TKey, TValue> item)
{
throw Fx.Exception.AsError(CreateReadOnlyException());
}
public bool TryGetValue(TKey key, out TValue value)
{
return this.dictionary.TryGetValue(key, out value);
}
}
}
|