コード例 #1
0
 public Example(string apiKey, string fusionAuthURL)
 {
     client = new FusionAuthClient(apiKey, fusionAuthURL);
 }
コード例 #2
0
 public TestBuilder()
 {
     Client = new FusionAuthClient(ApiKey, "http://localhost:9011");
 }
コード例 #3
0
 public TestBuilder ProxyClient(IWebProxy proxy)
 {
     Client = new FusionAuthClient(ApiKey, "http://localhost:9011", proxy);
     return(this);
 }
コード例 #4
0
 public FusionAuthSyncClient(string apiKey, string host, string tenantId = null)
 {
     client = new FusionAuthClient(apiKey, host, tenantId);
 }