cs11dotnet7/vs4win/Chapter02/AsyncConsole/Program.cs
2022-02-13 16:03:32 +00:00

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);