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