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