This code will help you to understand how to send an HTTP GET request using HttpClient in Blazor.
An HTTP GET request can be sent to get a resource from the API server using the GetJsonAsync() method provided by the HttpClient class.
CSHTML
@page "/employee" @inject HttpClient Http .. .. .. .. .. .. .. .. .. .. .. .. @code { Employee[] empList; protected override async Task OnInitializedAsync() { empList = await Http.GetJsonAsync<Employee[]>("/api/Employee/Index"); } }
WEB API
[HttpGet] [Route("api/Employee/Index")] public IEnumerable<Employee> Index() { return employee.GetAllEmployees(); }
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
An HTTP GET request can be sent to get a resource from the API server using the GetJsonAsync() method provided by the HttpClient class.
CSHTML
WEB API
need an explanation for this answer? contact us directly to get an explanation for this answer