JsonWebServiceClientBase.CreateRequest<TResponse> method (1 of 4)

Creates a new AutoWebServiceRequest.

protected AutoWebServiceRequest<TResponse> CreateRequest<TResponse>()
parameter description
TResponse The type of the response.

Return Value

The new AutoWebServiceRequest.

See Also


JsonWebServiceClientBase.CreateRequest<TResponse> method (2 of 4)

Creates a new AutoWebServiceRequest using the specified relative URI.

protected AutoWebServiceRequest<TResponse> CreateRequest<TResponse>(string relativeUri)
parameter description
TResponse The type of the response.
relativeUri The relative URI.

Return Value

The new AutoWebServiceRequest.

See Also


JsonWebServiceClientBase.CreateRequest<TResponse> method (3 of 4)

Creates a new AutoWebServiceRequest using the specified relative URI pattern and parameters.

protected AutoWebServiceRequest<TResponse> CreateRequest<TResponse>(string relativeUriPattern, 
    IEnumerable<KeyValuePair<string, object?>> uriParameters)
parameter description
TResponse The type of the response.
relativeUriPattern The relative URI pattern.
uriParameters The URI parameters.

Return Value

The new AutoWebServiceRequest.

Remarks

See UriUtility.FromPattern for acceptable parameter values.

See Also


JsonWebServiceClientBase.CreateRequest<TResponse> method (4 of 4)

Creates a new AutoWebServiceRequest using the specified relative URI pattern and parameters.

protected AutoWebServiceRequest<TResponse> CreateRequest<TResponse>(string relativeUriPattern, 
    params string[] parameters)
parameter description
TResponse The type of the response.
relativeUriPattern The relative URI pattern.
parameters The URI parameters.

Return Value

The new AutoWebServiceRequest.

Remarks

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

See Also