ServiceStack.Soap12ServiceClient.SetProxy C# (CSharp) Метод

SetProxy() публичный Метод

public SetProxy ( Uri proxyAddress ) : void
proxyAddress System.Uri
Результат void
        public override void SetProxy(Uri proxyAddress)
        {
            var wsHttpBinding = (WSHttpBinding)Binding;

            wsHttpBinding.ProxyAddress = proxyAddress;
            wsHttpBinding.UseDefaultWebProxy = false;
            wsHttpBinding.BypassProxyOnLocal = false;
            return;
        }
    }