Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Making a GET Request | Asynchronous Programming and Introduction to Web Services
course content

Contenido del Curso

Introduction to .NET with C#

Making a GET RequestMaking a GET Request

In terms of APIs, an endpoint is the same as a URL.

Important Points

  • We use the HttpClient class to make Get requests;
  • GetAsync is an asynchronous method and should be used as such;
  • The GetAync method returns a HttpResponseMessage object;
  • We can access the returned content using the ReadAsStringAsync method of the Content attribute from HttpResponseMessage: response.Content.ReadAsStringAsync().
1. What can be used for creating a client in a C# console application?
2. What type does the GetAsync method of HttpClient return?
3. What method should be used for making asynchronous HTTP GET requests with HttpClient?

What can be used for creating a client in a C# console application?

Selecciona la respuesta correcta

What type does the GetAsync method of HttpClient return?

Selecciona la respuesta correcta

What method should be used for making asynchronous HTTP GET requests with HttpClient?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 2. Capítulo 5
course content

Contenido del Curso

Introduction to .NET with C#

Making a GET RequestMaking a GET Request

In terms of APIs, an endpoint is the same as a URL.

Important Points

  • We use the HttpClient class to make Get requests;
  • GetAsync is an asynchronous method and should be used as such;
  • The GetAync method returns a HttpResponseMessage object;
  • We can access the returned content using the ReadAsStringAsync method of the Content attribute from HttpResponseMessage: response.Content.ReadAsStringAsync().
1. What can be used for creating a client in a C# console application?
2. What type does the GetAsync method of HttpClient return?
3. What method should be used for making asynchronous HTTP GET requests with HttpClient?

What can be used for creating a client in a C# console application?

Selecciona la respuesta correcta

What type does the GetAsync method of HttpClient return?

Selecciona la respuesta correcta

What method should be used for making asynchronous HTTP GET requests with HttpClient?

Selecciona la respuesta correcta

¿Todo estuvo claro?

Sección 2. Capítulo 5
some-alt