コード例 #1
0
 public Task DeleteAgentAsync(AgentSettings agentSettings)
 {
     return(_agentServer.DeleteAgentAsync(agentSettings.PoolId, agentSettings.AgentId));
 }
コード例 #2
0
 public Task DeleteAgentAsync(AgentSettings agentSettings)
 {
     ArgUtil.NotNull(agentSettings, nameof(agentSettings));
     return(_agentServer.DeleteAgentAsync(agentSettings.PoolId, agentSettings.AgentId));
 }
コード例 #3
0
 public Task DeleteAgentAsync(int agentPoolId, int agentId)
 {
     return(_agentServer.DeleteAgentAsync(agentPoolId, agentId));
 }
コード例 #4
0
 private async Task DeleteAgent(int poolId, int agentId)
 {
     await _agentServer.DeleteAgentAsync(poolId, agentId);
 }