Split VAR.WebForms.Common to a class library.
This commit is contained in:
19
VAR.WebForms.Common/Code/IGlobalConfig.cs
Normal file
19
VAR.WebForms.Common/Code/IGlobalConfig.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Web;
|
||||
|
||||
namespace VAR.WebForms.Common.Code
|
||||
{
|
||||
public interface IGlobalConfig
|
||||
{
|
||||
string Title { get; }
|
||||
string TitleSeparator { get; }
|
||||
string Author { get; }
|
||||
string Copyright { get; }
|
||||
string DefaultHandler { get; }
|
||||
string LoginHandler { get; }
|
||||
List<string> AllowedExtensions { get; }
|
||||
|
||||
bool IsUserAuthenticated(HttpContext context);
|
||||
void UserUnauthenticate(HttpContext context);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user