System.Net.Tests.ServicePointManagerTest.FixedWebProxy.FixedWebProxy C# (CSharp) Method

FixedWebProxy() public method

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