mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
7 lines
204 B
C#
7 lines
204 B
C#
HttpClient client = new();
|
|
|
|
HttpResponseMessage response =
|
|
await client.GetAsync("http://www.apple.com/");
|
|
|
|
WriteLine("Apple's home page has {0:N0} bytes.",
|
|
response.Content.Headers.ContentLength); |