Exemple #1
0
 public static IApplicationBuilder UseProtectFolder(
     this IApplicationBuilder builder,
     ProtectFolderOptions options)
 {
     return(null); //builder.UseMiddleware(options);
 }
Exemple #2
0
 public ProtectFolder(RequestDelegate next, ProtectFolderOptions options)
 {
     _next = next;
     _path = options.Path;
 }