예제 #1
0
 public NetworkCertificateController(
     IOptions <JwtVerifyingOptions> opts,
     IServerContext serverContext)
 {
     options = opts.Value;
     server  = serverContext;
 }
예제 #2
0
파일: JwtKeyResolver.cs 프로젝트: umcu/leaf
 public JwtKeyResolver(
     IOptions <JwtVerifyingOptions> options,
     INetworkInterrogatorCacheReader cache,
     NetworkEndpointConcurrentQueueSet refresh,
     ILogger <JwtKeyResolver> logger)
 {
     jwtOpts      = options.Value;
     this.cache   = cache;
     this.refresh = refresh;
     log          = logger;
 }
예제 #3
0
 public NetworkCertificateController(
     IOptions <JwtVerifyingOptions> opts)
 {
     options = opts.Value;
 }