Control: Change to protected some members

This commit is contained in:
2022-07-16 13:30:24 +02:00
parent 3d8dd8be31
commit 82c2181cdb
11 changed files with 14 additions and 16 deletions

View File

@@ -1,5 +1,3 @@
using System.Collections.Generic;
using Microsoft.AspNetCore.Http;
using VAR.WebFormsCore.Code;
namespace VAR.WebFormsCore.TestWebApp;
@@ -11,7 +9,7 @@ public class TestWebAppGlobalConfig: IGlobalConfig
public string Author { get; } = "XXX";
public string Copyright { get; } = "Copyright (c) 2022 by XXX, All Right Reserved";
public string DefaultHandler { get; } = nameof(FrmDefault);
public string LoginHandler { get; }
public string LoginHandler { get; } = nameof(FrmDefault);
public List<string> AllowedExtensions { get; } = new List<string> { ".png", ".jpg", ".jpeg", ".gif", ".ico", ".wav", ".mp3", ".ogg", ".mp4", ".webm", ".webp", ".mkv", ".avi" };
public bool IsUserAuthenticated(HttpContext context)
{