コード例 #1
0
ファイル: Requester.cs プロジェクト: Daenks/Druin.Chef.Core
 public Task <HttpResponseMessage> MakeRequestAsync(IChefConnection connectionInfo, string endPoint, HttpMethod method, byte[] file, string checksum, string parameter)
 {
     return(MakeRequestAsync(connectionInfo.ChefServer, endPoint, connectionInfo.PrivateKey, connectionInfo.UserId, method, file, checksum, parameter));
 }
コード例 #2
0
ファイル: Requester.cs プロジェクト: Daenks/Druin.Chef.Core
 public Requester(IChefConnection conn)
 {
     this.connectionInfo = conn;
 }