-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathConstants.cs
More file actions
23 lines (21 loc) · 732 Bytes
/
Constants.cs
File metadata and controls
23 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace MultiFactor.IIS.Adapter
{
public class Constants
{
public const string MULTIFACTOR_PAGE = "mfa.aspx";
public const string COOKIE_NAME = "multifactor";
public const string RAW_USER_NAME_CLAIM = "rawUserName";
//built-in mailboxes
public static readonly string[] EXCHANGE_SYSTEM_MAILBOX_PREFIX = new[]
{
"healthmailbox",
"extest",
"federatedemail",
"migration",
"systemmailbox"
};
public const string API_UNREACHABLE_CODE = "mfapi:0001";
public const string API_NOT_REGISTERED_CODE = "mfapi:0002";
public const string API_USERS_QUOTA_EXCEEDED_CODE = "mfapi:0003";
}
}