ValueAsync Method
Overloads
| ValueAsync<T>(String) |
Gets custom value from a json response asynchronously. |
ValueAsync<T>(String)
Gets custom value from a json response asynchronously.
Declaration
public Task<T> ValueAsync<T>(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name |
The property of the response to deserialized. |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<T> |
A task that resolves the deserialized value. |
Type Parameters
| Name | Description |
|---|---|
| T |
The type to which the json response should be deserialized. |