Inheritance: IUsersApi
コード例 #1
0
ファイル: PinterestClient.cs プロジェクト: Krusen/PinSharp
 public PinterestClient(IHttpClient httpClient)
 {
     Api = new PinterestApi(httpClient);
 }
コード例 #2
0
ファイル: PinterestClient.cs プロジェクト: Krusen/PinSharp
 public PinterestClient(string accessToken, string apiVersion = "v1")
 {
     Api = new PinterestApi(accessToken, apiVersion);
 }