()
| 17 | private static readonly HttpClient Http; |
| 18 | |
| 19 | static LCU() |
| 20 | { |
| 21 | Http = new HttpClient(); |
| 22 | ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12; |
| 23 | ServicePointManager.ServerCertificateValidationCallback += (a, b, c, d) => true; |
| 24 | } |
| 25 | |
| 26 | private static Process[] GetUxProcesses() |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected