1 instantiation of UriTemplateLiteralQueryValue
System.ServiceModel (1)
System\UriTemplateLiteralQueryValue.cs (1)
26return new UriTemplateLiteralQueryValue(UrlUtility.UrlDecode(value, Encoding.UTF8));
10 references to UriTemplateLiteralQueryValue
System.ServiceModel (10)
System\UriTemplateHelpers.cs (2)
59if (((UriTemplateLiteralQueryValue)(kvp.Value)).AsRawUnescapedString() != query[queryKeyName]) 345queryLitVals[i] = ((UriTemplateLiteralQueryValue)(utqv)).AsRawUnescapedString();
System\UriTemplateLiteralQueryValue.cs (7)
14class UriTemplateLiteralQueryValue : UriTemplateQueryValue, IComparable<UriTemplateLiteralQueryValue> 24public static UriTemplateLiteralQueryValue CreateFromUriTemplate(string value) 42public int CompareTo(UriTemplateLiteralQueryValue other) 49UriTemplateLiteralQueryValue lqv = obj as UriTemplateLiteralQueryValue; 76UriTemplateLiteralQueryValue otherAsLiteral = other as UriTemplateLiteralQueryValue;
System\UriTemplateQueryValue.cs (1)
51return UriTemplateLiteralQueryValue.CreateFromUriTemplate(value);