public OAuth2Handler(HttpAuthentication authentication, HttpConfiguration httpConfiguration = null)
        {
            _authN = authentication;

            if (httpConfiguration != null)
            {
                InnerHandler = new HttpControllerDispatcher(httpConfiguration);
            }
        }
        public AuthenticationHandler(AuthenticationConfiguration configuration, HttpConfiguration httpConfiguration = null)
        {
            _authN = new HttpAuthentication(configuration);

            if (httpConfiguration != null)
            {
                InnerHandler = new HttpControllerDispatcher(httpConfiguration);
            }
        }
        public AuthenticationHandler(AuthenticationConfiguration configuration, HttpConfiguration httpConfiguration = null)
        {
            _authN = new HttpAuthentication(configuration);

            if (httpConfiguration != null)
            {
                InnerHandler = new HttpControllerDispatcher(httpConfiguration);
            }
        }
Example #4
0
        public AuthenticationHandler(AuthenticationConfiguration configuration, HttpConfiguration httpConfiguration = null)
        {
            log.Info("Creando AuthenticationHandler...");
            _authN = new HttpAuthentication(configuration);

            if (httpConfiguration != null)
            {
                InnerHandler = new HttpControllerDispatcher(httpConfiguration);
            }
        }
 public AuthenticationHandler(AuthenticationConfiguration configuration, HttpMessageHandler innerHandler)
 {
     _authN       = new HttpAuthentication(configuration);
     InnerHandler = innerHandler;
 }
 public AuthenticationHandler(AuthenticationConfiguration configuration, HttpMessageHandler innerHandler)
 {
     _authN = new HttpAuthentication(configuration);
     InnerHandler = innerHandler;
 }
 public OAuth2Handler(HttpAuthentication authentication, HttpMessageHandler innerHandler)
 {
     _authN = authentication;
     InnerHandler = innerHandler;
 }
 public AuthenticationHandler(HttpAuthentication authentication, HttpMessageHandler innerHandler)
 {
     _authN       = authentication;
     InnerHandler = innerHandler;
 }
Example #9
0
 public AuthenticationHandler(AuthenticationConfiguration configuration, HttpMessageHandler innerHandler)
 {
     log.Info("Creando AuthenticationHandler2...");
     _authN       = new HttpAuthentication(configuration);
     InnerHandler = innerHandler;
 }
 public AuthenticationHandler(AuthenticationConfiguration configuration)
 {
     _authN = new HttpAuthentication(configuration);
 }