1 write to defaults
System.ServiceModel (1)
System\UriTemplate.cs (1)
1015
this.
defaults
= new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
12 references to defaults
System.ServiceModel (12)
System\UriTemplate.cs (12)
1020
this.
defaults
.Add(kvp.Key, kvp.Value);
1027
this.
defaults
.Add(kvp.Key.ToUpperInvariant(), kvp.Value);
1030
this.keys = new ReadOnlyCollection<string>(new List<string>(this.
defaults
.Keys));
1031
this.values = new ReadOnlyCollection<string>(new List<string>(this.
defaults
.Values));
1039
return this.
defaults
.Count;
1069
return this.
defaults
[key];
1096
return (this.
defaults
as ICollection<KeyValuePair<string, string>>).Contains(item);
1100
return this.
defaults
.ContainsKey(key);
1104
(this.
defaults
as ICollection<KeyValuePair<string, string>>).CopyTo(array, arrayIndex);
1110
return this.
defaults
.GetEnumerator();
1126
return this.
defaults
.GetEnumerator();
1130
return this.
defaults
.TryGetValue(key, out value);