3 writes to dictionary
System.WorkflowServices (3)
System\ServiceModel\SerializableReadOnlyDictionary.cs (3)
24
this.
dictionary
= new Dictionary<K, V>(dictionary);
28
this.
dictionary
= dictionary;
34
this.
dictionary
= new Dictionary<K, V>(entries.Length);
10 references to dictionary
System.WorkflowServices (10)
System\ServiceModel\SerializableReadOnlyDictionary.cs (10)
38
this.
dictionary
.Add(pair);
56
get { return this.
dictionary
.Count; }
64
get { return this.
dictionary
.Keys; }
68
get { return this.
dictionary
.Values; }
74
return this.
dictionary
[key];
97
return this.
dictionary
.Contains(item);
101
return this.
dictionary
.ContainsKey(key);
105
this.
dictionary
.CopyTo(array, arrayIndex);
109
return this.
dictionary
.GetEnumerator();
125
return this.
dictionary
.TryGetValue(key, out value);