NuGet.ProxyService.GetProxy C# (CSharp) Méthode

GetProxy() public méthode

public GetProxy ( Uri uri ) : IWebProxy
uri System.Uri
Résultat IWebProxy
        public virtual IWebProxy GetProxy(Uri uri)
        {
            if (null == uri) {
                throw new ArgumentNullException("uri");
            }

            bool isSystemProxySet = IsSystemProxySet(uri);
            return isSystemProxySet ? GetProxyInternal(uri) : null;
        }