System.Net.ConnectionPoolManager.GenerateKey C# (CSharp) Method

GenerateKey() private static method

private static GenerateKey ( string hostName, int port, string groupName ) : string
hostName string
port int
groupName string
return string
        private static string GenerateKey(string hostName, int port, string groupName) {
            return hostName+"\r"+port.ToString(NumberFormatInfo.InvariantInfo)+"\r"+groupName;
        }