Graphite.GraphiteTcpClient.GraphiteTcpClient C# (CSharp) Метод

GraphiteTcpClient() публичный Метод

public GraphiteTcpClient ( string hostname, int port = 2003, string keyPrefix = null ) : System
hostname string
port int
keyPrefix string
Результат System
        public GraphiteTcpClient(string hostname, int port = 2003, string keyPrefix = null)
        {
            Hostname = hostname;
            Port = port;
            KeyPrefix = keyPrefix;

            _tcpClient = new TcpClient(Hostname, Port);
        }