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