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