public static async Task Start()

in src/Azure.AppService.Tunnel/Agent/DebuggerAgentProcess.cs [35:46]


    public static async Task<DebuggerAgentProcess> Start(
        Lifetime lifetime,
        string path,
        string login,
        string password,
        int port = 0)
    {
        var debuggerAgentProcess = new DebuggerAgentProcess(path, login, password, port);
        await debuggerAgentProcess.Start(lifetime);

        return debuggerAgentProcess;
    }