System.Net.ConnectionPoolManager.GenerateKey C# (CSharp) Метод

GenerateKey() приватный статический Метод

private static GenerateKey ( string hostName, int port, string groupName ) : string
hostName string
port int
groupName string
Результат string
        private static string GenerateKey(string hostName, int port, string groupName) {
            return hostName+"\r"+port.ToString(NumberFormatInfo.InvariantInfo)+"\r"+groupName;
        }