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

CredentialKey() private method

private CredentialKey ( Uri uriPrefix, string authenticationType ) : System.Net.Sockets
uriPrefix Uri
authenticationType string
return System.Net.Sockets
        internal CredentialKey(Uri uriPrefix, string authenticationType) {
            UriPrefix = uriPrefix;
            UriPrefixLength = UriPrefix.ToString().Length;
            AuthenticationType = authenticationType;
        }