HttpClientgetT Method A Sandcastle Documented Class Library
Perform an HTTP GET request, parsing the JSON response to create a new object.

Namespace: Ontotext.S4.client
Assembly: S4ClientLibrary (in S4ClientLibrary.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public T get<T>(
	string target,
	T responseType
)

Parameters

target
Type: SystemString
the URL to request (relative URLs will resolve against the {@link #getBaseUrl() base URL}).
responseType
Type: T
the Java type corresponding to a successful response message for this URL

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Ontotext.S4.client.HttpClient.get``1(System.String,``0)"]

Return Value

Type: T
for a successful response, the deserialized response body, or
null
for a 201 response
See Also

Reference