Tce.RpcEndpointSocket.RpcEndpointSocket C# (CSharp) Method

RpcEndpointSocket() public method

public RpcEndpointSocket ( string host, int port, bool ssl = false ) : System
host string
port int
ssl bool
return System
        public RpcEndpointSocket(string host, int port, bool ssl = false) {
            this.host = host;
            this.port = port;
            this.ssl = ssl;
        }
    }
RpcEndpointSocket