public ProtectFolder(RequestDelegate next, ProtectFolderOptions options) { _next = next; _path = options.Path; _policyName = options.PolicyName; }
public static IApplicationBuilder UseProtectFolder( this IApplicationBuilder builder, ProtectFolderOptions options) { return(builder.UseMiddleware <ProtectFolder>(options)); }