Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

async using c#

using(HttpResponseMessage response = await httpClient.GetAsync(new Uri("http://www.google.com")))
{
    await this.responseLogger.LogResponseAsync(response);

    return true;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #async
ADD COMMENT
Topic
Name
3+9 =