[]
Sends a GET request to the specified URI asynchronously.
Task<WebRequestResult> GetAsync(string requestUri)
Function GetAsync(requestUri As String) As Task(Of WebRequestResult)
Type | Name | Description |
---|---|---|
string | requestUri | The URI to send the GET request to. |
Type | Description |
---|---|
Task<WebRequestResult> | A Task<TResult> representing the asynchronous operation. The Task<TResult> will contain a WebRequestResult object representing the result of the web request. |