private DebuggerAgentProcess()

in src/Azure.AppService.Tunnel/Agent/DebuggerAgentProcess.cs [16:31]


    private DebuggerAgentProcess(string path, string login, string password, int port)
    {
        _process = new Process
        {
            StartInfo = new ProcessStartInfo
            {
                FileName = path,
                CreateNoWindow = true,
                UseShellExecute = false,
                RedirectStandardOutput = true,
                RedirectStandardError = true,
                Arguments = $"-login {login} -password {password} -port {port}"
            },
            EnableRaisingEvents = true
        };
    }