Control: Change to protected some members
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user