示例#1
0
 public FortressOWINFirewall(
     OwinMiddleware next,
     Microsoft.Owin.Logging.ILogger logger)
     : base(next)
 {
 }
示例#2
0
 public SawtoothOpenIdConnectAuthenticationHandler(Microsoft.Owin.Logging.ILogger logger)
     : base(logger)
 {
 }
 public MAuthMiddleware(OwinMiddleware next, MAuthMiddlewareOptions options, ILogger owinLogger) : base(next)
 {
     this.options = options;
     Microsoft.Extensions.Logging.ILogger logger = new OwinLoggerWrapper(owinLogger);
     authenticator = new MAuthAuthenticator(options, logger);
 }
示例#4
0
 public OpenIdConnectAuthenticationPatchedMiddleware(Microsoft.Owin.OwinMiddleware next, Owin.IAppBuilder app, Microsoft.Owin.Security.OpenIdConnect.OpenIdConnectAuthenticationOptions options)
     : base(next, app, options)
 {
     this._logger = Microsoft.Owin.Logging.AppBuilderLoggerExtensions.CreateLogger <OpenIdConnectAuthenticationPatchedMiddleware>(app);
 }
示例#5
0
 public MasticoreOpenIdConnectAuthenticationHandler(Microsoft.Owin.Logging.ILogger logger)
     : base(logger)
 {
 }