Created
January 7, 2026 20:18
-
-
Save AnthonyGiretti/159469b120f3cb6a7ba6cb68ec7dccab to your computer and use it in GitHub Desktop.
.NET 10 , automatic support of TLS 1.3 on macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Net.Http; | |
| using var client = new HttpClient(); | |
| string html = await client.GetStringAsync("https://example.com"); // Uses TLS 1.3 on macOS automatically |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment