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;
        }
    }