コード例 #1
0
        public ReachMailApiGateway(string apiKey)
        {
            Validate.Begin().IsNotNullOrEmpty(apiKey, "reachMail");

            reachMail = Reachmail.Api.Create(apiKey);
        }
コード例 #2
0
ファイル: Tests.cs プロジェクト: robsmith1776/WebAPISamples
 public void Setup()
 {
     _reachmail = Api.Create(ConfigurationManager.AppSettings["Token"], allowSelfSignedCerts: true, timeout: 1200);
 }