ホーム › System.UpdateAgent › OperationResultCode
OperationResultCode
列挙型メンバー 6
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| orcNotStarted | 0 | 0x0 | 操作は開始されていません。 |
| orcInProgress | 1 | 0x1 | 操作は進行中です。 |
| orcSucceeded | 2 | 0x2 | 操作は正常に完了しました。 |
| orcSucceededWithErrors | 3 | 0x3 | 操作は完了しましたが、操作中に 1 つ以上のエラーが発生しました。結果は不完全な可能性があります。 |
| orcFailed | 4 | 0x4 | 操作を完了できませんでした。 |
| orcAborted | 5 | 0x5 | 操作は取り消されました。 |
公式ドキュメント
更新プログラムに対するダウンロード、インストール、アンインストール、または検証操作の結果として考えられる値を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 OperationResultCode : int {
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5
} OperationResultCode;public enum OperationResultCode : int
{
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5,
}Public Enum OperationResultCode As Integer
orcNotStarted = 0
orcInProgress = 1
orcSucceeded = 2
orcSucceededWithErrors = 3
orcFailed = 4
orcAborted = 5
End Enumimport enum
class OperationResultCode(enum.IntEnum):
orcNotStarted = 0
orcInProgress = 1
orcSucceeded = 2
orcSucceededWithErrors = 3
orcFailed = 4
orcAborted = 5// OperationResultCode
pub const orcNotStarted: i32 = 0;
pub const orcInProgress: i32 = 1;
pub const orcSucceeded: i32 = 2;
pub const orcSucceededWithErrors: i32 = 3;
pub const orcFailed: i32 = 4;
pub const orcAborted: i32 = 5;// OperationResultCode
const (
orcNotStarted int32 = 0
orcInProgress int32 = 1
orcSucceeded int32 = 2
orcSucceededWithErrors int32 = 3
orcFailed int32 = 4
orcAborted int32 = 5
)const
orcNotStarted = 0;
orcInProgress = 1;
orcSucceeded = 2;
orcSucceededWithErrors = 3;
orcFailed = 4;
orcAborted = 5;// OperationResultCode
pub const orcNotStarted: i32 = 0;
pub const orcInProgress: i32 = 1;
pub const orcSucceeded: i32 = 2;
pub const orcSucceededWithErrors: i32 = 3;
pub const orcFailed: i32 = 4;
pub const orcAborted: i32 = 5;const
orcNotStarted* = 0
orcInProgress* = 1
orcSucceeded* = 2
orcSucceededWithErrors* = 3
orcFailed* = 4
orcAborted* = 5enum OperationResultCode : int {
orcNotStarted = 0,
orcInProgress = 1,
orcSucceeded = 2,
orcSucceededWithErrors = 3,
orcFailed = 4,
orcAborted = 5,
}#define global orcNotStarted 0x0
#define global orcInProgress 0x1
#define global orcSucceeded 0x2
#define global orcSucceededWithErrors 0x3
#define global orcFailed 0x4
#define global orcAborted 0x5