Ejemplo n.º 1
0
 public ApiActionAuthenticationFilter()
 {
     _authenticationHandle = AutofacConfig.AutoFacContainer.container.Resolve <IApiAuthenticationHandle>();
 }
Ejemplo n.º 2
0
 public ApiAuthenticationMiddleware(RequestDelegate next, IApiAuthenticationHandle authenticationHandle)
 {
     this._next = next;
     this._authenticationHandle = authenticationHandle;
 }