コード例 #1
0
 public AuthenticateController(UmaAuthenticationWebsiteOptions options, IAuthenticationService authenticationService) : base(authenticationService)
 {
     _options = options;
     _identityServerClientFactory = new IdentityServerClientFactory();
     _jwsParserFactory            = new JwsParserFactory();
 }
コード例 #2
0
 public ResourcesController(IAuthenticationService authenticationService, IResourcesActions resourcesActions, UmaAuthenticationWebsiteOptions options) : base(authenticationService)
 {
     _resourcesActions = resourcesActions;
     _options          = options;
 }