createuserstatus.cs
来自「本系统是在asp版《在线文件管理器》的基础上设计制作」· CS 代码 · 共 68 行
CS
68 行
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
// Copyright (c) Telligent Systems Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
namespace CommunityServer.Components {
/// <summary>
/// Indicates the return status for creating a new user.
/// </summary>
public enum CreateUserStatus {
/// <summary>
/// The user was not created for some unknown reason.
/// </summary>
UnknownFailure,
/// <summary>
/// The user's account was successfully created.
/// </summary>
Created,
/// <summary>
/// The user's account was not created because the user's desired username is already being used.
/// </summary>
DuplicateUsername,
/// <summary>
/// The user's account was not created because the user's email address is already being used.
/// </summary>
DuplicateEmailAddress,
/// <summary>
/// The user's account was not created because the user's desired username did not being with an
/// alphabetic character.
/// </summary>
InvalidFirstCharacter,
/// <summary>
/// The username has been previously disallowed.
/// </summary>
DisallowedUsername,
/// <summary>
/// The user record has been updated
/// </summary>
Updated,
/// <summary>
/// The user record has been deleted
/// </summary>
Deleted,
InvalidQuestionAnswer,
InvalidPassword,
/// <summary>
/// 昵称重复
/// </summary>
DuplicateNickname
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?