RestClient.GetAsync<T, TOrderBy> Method

Public Function GetAsync(Of  _ 
T, _ 
TOrderBy)( _ 
ByVal url As String, _ 
ByVal headers As Dictionary(Of String, String), _ 
ByVal groupBy As Func(Of T, String), _ 
ByVal orderBy As Func(Of T, TOrderBy) _ 
) As Task(Of Dictionary(Of String, T))
This language is not supported or no code example is available.
public Task<Dictionary<string, T>> GetAsync<T, TOrderBy>( 
string url
Dictionary<string, string> headers
Func<T, string> groupBy
Func<T, TOrderBy> orderBy 
)
This language is not supported or no code example is available.
generic<typename T, typename TOrderBy> 
public:  
Task<Dictionary<String^, T^>^>^ GetAsync( 
String^ url
Dictionary<String^, String^>^ headers
Func<T^, String^>^ groupBy
Func<T^, TOrderBy^>^ orderBy 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Type Parameters

T

TOrderBy

Parameters

url
string

headers
Dictionary<string, string>

groupBy
Func<T, string>

orderBy
Func<T, TOrderBy>

Return Value

Task<Dictionary<string, T>>

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition