System.Net.Tests.ServicePointManagerTest.FixedWebProxy.FixedWebProxy C# (CSharp) 메소드

FixedWebProxy() 공개 메소드

public FixedWebProxy ( string proxyAddress ) : System.Net.Security
proxyAddress string
리턴 System.Net.Security
            public FixedWebProxy(string proxyAddress) { _proxyAddress = new Uri(proxyAddress); }
            public Uri GetProxy(Uri destination) => _proxyAddress;
ServicePointManagerTest.FixedWebProxy