ResultAsync Method
Overloads
| ResultAsync<T>(String, Func<JToken, Task<T>>) | 
             Gets custom result from a json response. Wrapper for Value<T>(String, Func<JToken, T>) that assumes the property to deserialize is found in the result part of the response asynchronously.  | 
        
      
    
ResultAsync<T>(String, Func<JToken, Task<T>>)
Gets custom result from a json response. Wrapper for Value<T>(String, Func<JToken, T>) that assumes the property to deserialize is found in the result part of the response asynchronously.
Declaration
      public Task<T> ResultAsync<T>(string name, Func<JToken, Task<T>> deserializer)
    
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | name | 
           The property of the result entry in the json response to deserialized  | 
      
| System.Func<Newtonsoft.Json.Linq.JToken, System.Threading.Tasks.Task<T>> | deserializer | 
           The method to use to translate a token to the target type.  | 
      
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.  |