System.Net.CredentialHostKey.CredentialHostKey C# (CSharp) Method

CredentialHostKey() private method

private CredentialHostKey ( string host, int port, string authenticationType ) : System.Net.Sockets
host string
port int
authenticationType string
return System.Net.Sockets
        internal CredentialHostKey(string host, int port, string authenticationType) {
            Host = host;
            Port = port;
            AuthenticationType = authenticationType;
        }