大家好,又见面了,我是你们的朋友全栈君。
因为.net core 的System.Net 中没有提供WebProxy这个方法,所以可以根据需求实现一个.
public class CoreWebProxy : IWebProxy
{
public readonly Uri Uri;
private readonly bool bypass;
public CoreWebProxy(Uri uri, ICredentials credentials = null, bool bypass = false)
{
Uri = uri;
this.bypass = bypass;
Credentials = credentials;
}
public ICredentials Credentials { get; set; }
public Uri GetProxy(Uri destination) => Uri;
public bool IsBypassed(Uri host) => bypass;
public override int GetHashCode()
{
if (Uri == null)
{
return -1;
}
return Uri.GetHashCode();
}
}
参考:
转载于:https://my.oschina.net/idoop/blog/914925
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151983.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...