2 writes to defaultValues
System.ServiceModel (2)
System\UriTemplate.cs (2)
1223
this.
defaultValues
= new Dictionary<string, string>();
1263
this.
defaultValues
= new Dictionary<string, string>();
15 references to defaultValues
System.ServiceModel (15)
System\UriTemplate.cs (15)
1171
return this.
defaultValues
;
1221
if (this.
defaultValues
== null)
1225
this.
defaultValues
.Add(varName, value);
1261
if (this.
defaultValues
== null)
1265
this.
defaultValues
.Add(uppercaseVarName, defaultValue);
1298
Fx.Assert(this.
defaultValues
.ContainsKey(varName), "Otherwise, we don't have a value to bind");
1299
boundParameters.Add(varName, owner.UnescapeDefaultValue(this.
defaultValues
[varName]));
1374
Fx.Assert(this.
defaultValues
!= null, "We are checking this condition from the c'tor");
1381
if (!this.
defaultValues
.TryGetValue(varName, out defaultValue))
1401
if (this.
defaultValues
.TryGetValue(varName, out defaultValue))
1455
if (!this.
defaultValues
.ContainsKey(vps.VarName))
1487
if (string.IsNullOrEmpty(normalizedParameters[i]) && (this.
defaultValues
!= null))
1489
this.
defaultValues
.TryGetValue(this.pathSegmentVariableNames[i], out normalizedParameters[i]);
1494
if ((this.
defaultValues
!= null) &&
1501
if (this.
defaultValues
.TryGetValue(this.pathSegmentVariableNames[lastNonDefaultPathParameter],