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;
        }