コード例 #1
0
ファイル: APIKeyController.cs プロジェクト: chc/thps.api
 public APIKeyController(APIKeyProvider rsaProvider)
 {
     this.rsaProvider = rsaProvider;
 }
コード例 #2
0
ファイル: ApiKeyAuthHandler.cs プロジェクト: chc/thps.api
 public ApiKeyAuthHandler(IOptionsMonitor <ApiKeyAuthOpts> options, ILoggerFactory logger, UrlEncoder encoder, ISystemClock clock, APIKeyProvider apiKeyProvider)
     : base(options, logger, encoder, clock)
 {
     this.apiKeyProvider = apiKeyProvider;
 }