I want to understand what the following code is doing (it's from a tutorial):
string token = await _httpClient.GetStringAsync("example-data/token.json");
My understanding is that _httpclient is used to call a Uri. Is this code making a network trip at all? What is the Uri here? What is returned?