コード例 #1
0
 public Task DeleteAgentAsync(int agentPoolId, int agentId)
 {
     CheckConnection();
     return(_taskAgentClient.DeleteAgentAsync(agentPoolId, agentId));
 }
コード例 #2
0
ファイル: RunnerServer.cs プロジェクト: Tryweirder/gha-runner
 public Task DeleteAgentAsync(int agentPoolId, int agentId)
 {
     CheckConnection(RunnerConnectionType.Generic);
     return(_genericTaskAgentClient.DeleteAgentAsync(agentPoolId, agentId));
 }