ホーム › Networking.Clustering › CLUSTER_SETUP_PHASE_SEVERITY
CLUSTER_SETUP_PHASE_SEVERITY
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| ClusterSetupPhaseInformational | 1 | 0x1 | クラスターセットアップのこのフェーズは正常に完了できます。 |
| ClusterSetupPhaseWarning | 2 | 0x2 | クラスターセットアップのこのフェーズは警告付きで完了できます。 |
| ClusterSetupPhaseFatal | 3 | 0x3 | クラスターセットアッププロセスのこのフェーズは正常に完了できません。 |
公式ドキュメント
クラスターセットアッププロセスの現在のフェーズの重大度を示します。この列挙型は ClusterSetupProgressCallback 関数で 使用されます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum CLUSTER_SETUP_PHASE_SEVERITY : int {
ClusterSetupPhaseInformational = 1,
ClusterSetupPhaseWarning = 2,
ClusterSetupPhaseFatal = 3
} CLUSTER_SETUP_PHASE_SEVERITY;public enum CLUSTER_SETUP_PHASE_SEVERITY : int
{
ClusterSetupPhaseInformational = 1,
ClusterSetupPhaseWarning = 2,
ClusterSetupPhaseFatal = 3,
}Public Enum CLUSTER_SETUP_PHASE_SEVERITY As Integer
ClusterSetupPhaseInformational = 1
ClusterSetupPhaseWarning = 2
ClusterSetupPhaseFatal = 3
End Enumimport enum
class CLUSTER_SETUP_PHASE_SEVERITY(enum.IntEnum):
ClusterSetupPhaseInformational = 1
ClusterSetupPhaseWarning = 2
ClusterSetupPhaseFatal = 3// CLUSTER_SETUP_PHASE_SEVERITY
pub const ClusterSetupPhaseInformational: i32 = 1;
pub const ClusterSetupPhaseWarning: i32 = 2;
pub const ClusterSetupPhaseFatal: i32 = 3;// CLUSTER_SETUP_PHASE_SEVERITY
const (
ClusterSetupPhaseInformational int32 = 1
ClusterSetupPhaseWarning int32 = 2
ClusterSetupPhaseFatal int32 = 3
)const
ClusterSetupPhaseInformational = 1;
ClusterSetupPhaseWarning = 2;
ClusterSetupPhaseFatal = 3;// CLUSTER_SETUP_PHASE_SEVERITY
pub const ClusterSetupPhaseInformational: i32 = 1;
pub const ClusterSetupPhaseWarning: i32 = 2;
pub const ClusterSetupPhaseFatal: i32 = 3;const
ClusterSetupPhaseInformational* = 1
ClusterSetupPhaseWarning* = 2
ClusterSetupPhaseFatal* = 3enum CLUSTER_SETUP_PHASE_SEVERITY : int {
ClusterSetupPhaseInformational = 1,
ClusterSetupPhaseWarning = 2,
ClusterSetupPhaseFatal = 3,
}#define global ClusterSetupPhaseInformational 0x1
#define global ClusterSetupPhaseWarning 0x2
#define global ClusterSetupPhaseFatal 0x3