Beispiel #1
0
 public PreflightRequestHandler(OwinMiddleware next, PreflightRequestHandlingOptions options) : base(next)
 {
     _options = options;
 }
Beispiel #2
0
 public static IAppBuilder HandlePreflightRequests(this IAppBuilder app, PreflightRequestHandlingOptions options)
 {
     app.Use(typeof(PreflightRequestHandler), options);
     return(app);
 }