maingun APIの開始 のC#タブで、次のコードを見つけます。
public static RestResponse SendSimpleMessage() {
RestClient client = new RestClient();
client.BaseUrl = "https://api.mailgun.net/v2";
client.Authenticator =
new HttpBasicAuthenticator("api",
"key-3ax6xnjp29jd6fds4gc373sgvjxteol0");
RestRequest request = new RestRequest();
request.AddParameter("domain",
"samples.mailgun.org", ParameterType.UrlSegment);
request.Resource = "{domain}/messages";
request.AddParameter("from", "Excited User <[email protected]>");
request.AddParameter("to", "[email protected]");
request.AddParameter("to", "[email protected]");
request.AddParameter("subject", "Hello");
request.AddParameter("text", "Testing some Mailgun awesomness!");
request.Method = Method.POST;
return client.Execute(request);
}
クラスの名前をグーグル検索すると、さまざまなコンテキストでこのクラスへの参照がいくつか見つかります。ただし、RestRequestクラスの完全修飾名を、メールガンのWebサイト、googleまたはMSDNのどこにも見つけてドキュメントを見つけることができません。
誰でもこのクラスが定義されている場所を指摘できますか?
コードは RestSharp を使用しているように見えます。
RestSharpはNuGetから入手できます。そこからインストールします。