Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 interfax.api dll 向用户发送传真。如何添加代理服务器配置以将传真发送给用户。实际上我想在.net core 中启用代理服务器设置。最好的方法是什么?
问题似乎与 interfax api 无关。这可以通过像这样将代理 uri 添加到您的 .net 核心项目来解决
HttpClient.DefaultProxy = new WebProxy("http://199.169.6.177:5589/", true);
在您的启动类 ConfigureServices 方法中