您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

29 行
743 B

namespace Unity.Services.Core
{
/// <summary>
/// All supported status of an <see cref="IAsyncOperation"/>.
/// </summary>
enum AsyncOperationStatus
{
/// <summary>
/// The operation status hasn't been defined yet.
/// </summary>
None,
/// <summary>
/// The operation is running.
/// </summary>
InProgress,
/// <summary>
/// The operation is completed without any errors.
/// </summary>
Succeeded,
/// <summary>
/// The operation is completed with errors.
/// </summary>
Failed,
/// <summary>
/// The operation has been canceled.
/// </summary>
Cancelled
}
}