JsonWebServiceClientBase.GetRequestUri method (1 of 4)

Creates a web request URI.

protected Uri GetRequestUri()

Return Value

The web request URI.

See Also


JsonWebServiceClientBase.GetRequestUri method (2 of 4)

Creates a web request URI using the specified relative URI.

protected Uri GetRequestUri(string relativeUri)
parameter description
relativeUri The relative URI.

Return Value

The web request URI.

See Also


JsonWebServiceClientBase.GetRequestUri method (3 of 4)

Creates a web request URI using the specified relative URI pattern and parameters.

protected Uri GetRequestUri(string relativeUriPattern, 
    IEnumerable<KeyValuePair<string, object?>> uriParameters)
parameter description
relativeUriPattern The relative URI pattern.
uriParameters The URI parameters.

Return Value

The web request URI.

Remarks

See UriUtility.FromPattern for acceptable parameter values.

See Also


JsonWebServiceClientBase.GetRequestUri method (4 of 4)

Creates a web request URI using the specified relative URI pattern and parameters.

protected Uri GetRequestUri(string relativeUriPattern, params string[] parameters)
parameter description
relativeUriPattern The relative URI pattern.
parameters The URI parameters.

Return Value

The web request URI.

Remarks

Each pair of parameters represents a key and a value. See UriUtility.FromPattern for acceptable parameter values.

See Also