Detecting TLS Version used for HttpClient POST or GET calls
问题 I am trying to retrieve the TLS Version information. The code I have below makes a successful HTTP GET call using HttpClient. What am I missing? Where do I get the TLS Version information from HttpClient? I am kind of doing the same thing as was suggested in Which TLS version was negotiated? but that is specific to WebRequest which is not the same as HttpClient. static async Task MainAsync() { Uri baseURI = new Uri("https://jsonplaceholder.typicode.com/posts/1"); string apiPath = ""; using