📄 loginuserstatus.cs
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
// Copyright (c) Telligent Systems Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
namespace AspNetForums.Enumerations {
/// <summary>
/// Indicates the return status for logging-in a new user.
/// </summary>
public enum LoginUserStatus
{
/// <summary>
/// Username and password didn't match.
/// </summary>
InvalidCredentials = 0,
/// <summary>
/// The user name and password are ok.
/// </summary>
Success = 1,
/// <summary>
/// The user account request is still pending.
/// </summary>
AccountStillPending = 2,
/// <summary>
/// The user account has been banned.
/// </summary>
AccountBanned = 3,
/// <summary>
/// Unknown situation possibly generated by un-syncronization beteen
/// data layer and business layer.
/// </summary>
UnknownError = 100
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -