Lines Matching refs:wrapped
44 private readonly IDictionary<TKey, TValue> wrapped; field in Google.Protobuf.Collections.ReadOnlyDictionary
46 public ReadOnlyDictionary(IDictionary<TKey, TValue> wrapped) in ReadOnlyDictionary() argument
48 this.wrapped = wrapped; in ReadOnlyDictionary()
58 return wrapped.ContainsKey(key); in ContainsKey()
63 get { return wrapped.Keys; }
73 return wrapped.TryGetValue(key, out value); in TryGetValue()
78 get { return wrapped.Values; }
83 get { return wrapped[key]; }
99 return wrapped.Contains(item); in Contains()
104 wrapped.CopyTo(array, arrayIndex); in CopyTo()
109 get { return wrapped.Count; }
124 return wrapped.GetEnumerator(); in GetEnumerator()
129 return ((IEnumerable) wrapped).GetEnumerator(); in IEnumerable.GetEnumerator()
134 return wrapped.Equals(obj); in Equals()
139 return wrapped.GetHashCode(); in GetHashCode()
144 return wrapped.ToString(); in ToString()