47 строки
1.2 KiB
C#
47 строки
1.2 KiB
C#
|
//------------------------------------------------------------------------------
|
|||
|
// <copyright file="XboxCertTypes.cs" company="Microsoft">
|
|||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
//------------------------------------------------------------------------------
|
|||
|
|
|||
|
namespace Microsoft.Internal.GamesTest.Xbox
|
|||
|
{
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Provides information about a consoles cert type.
|
|||
|
/// </summary>
|
|||
|
[Flags]
|
|||
|
public enum XboxCertTypes
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// No cert type specified.
|
|||
|
/// </summary>
|
|||
|
None = 0x0,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ERA development specified on the console.
|
|||
|
/// </summary>
|
|||
|
EraDevKit = 0x1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// SRA development specified on the console.
|
|||
|
/// </summary>
|
|||
|
SraDevKit = 0x2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// ERA test specified on the console.
|
|||
|
/// </summary>
|
|||
|
EraTestKit = 0x4,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Some other cert is specified.
|
|||
|
/// </summary>
|
|||
|
Other = 0x8,
|
|||
|
}
|
|||
|
}
|