ana sayfa > C# > Is it possible to specify proxy credentials in your web.config?

Is it possible to specify proxy credentials in your web.config?

Perşembe, 02 Ağu 2018 yorum ekle yorumlara git
namespace SomeNameSpace
{
    public class MyProxy : IWebProxy
    {
        public ICredentials Credentials
        {
            get { return new NetworkCredential("user", "password"); }
            //or get { return new NetworkCredential("user", "password","domain"); }
            set { }
        }

        public Uri GetProxy(Uri destination)
        {
            return new Uri("http://my.proxy:8080");
        }

        public bool IsBypassed(Uri host)
        {
            return false;
        }
    }
}

 

<defaultProxy enabled="true" useDefaultCredentials="false">
  <module type = "SomeNameSpace.MyProxy, SomeAssembly" />
</defaultProxy>

 

Kaynak: https://stackoverflow.com/questions/186800/is-it-possible-to-specify-proxy-credentials-in-your-web-config#

Categories: C# Tags:
  1. şimdilik yorum yok.
  1. şimdilik geri bağlantı yok
yorum yapabilmek için giriş yapmalısınız