Win32 API 日本語リファレンス
ホームSecurity.Credentials › KeyCredentialManagerOperationType

KeyCredentialManagerOperationType

列挙型
基底型i4

メンバー 3

名前10進16進説明
KeyCredentialManagerProvisioning00x0プロビジョニング操作を開始します。
KeyCredentialManagerPinChange10x1ユーザーによる PIN 変更操作を開始します。
KeyCredentialManagerPinReset20x2ユーザーの PIN リセット操作を開始します。

公式ドキュメント

KeyCredentialManagerShowUIOperation に渡される、操作を表す列挙値です。

出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)

各言語での定義

列挙メンバーの定義。HSP タブは #define global(値は16進)。

typedef enum KeyCredentialManagerOperationType : int {
    KeyCredentialManagerProvisioning = 0,
    KeyCredentialManagerPinChange = 1,
    KeyCredentialManagerPinReset = 2
} KeyCredentialManagerOperationType;
public enum KeyCredentialManagerOperationType : int
{
    KeyCredentialManagerProvisioning = 0,
    KeyCredentialManagerPinChange = 1,
    KeyCredentialManagerPinReset = 2,
}
Public Enum KeyCredentialManagerOperationType As Integer
    KeyCredentialManagerProvisioning = 0
    KeyCredentialManagerPinChange = 1
    KeyCredentialManagerPinReset = 2
End Enum
import enum

class KeyCredentialManagerOperationType(enum.IntEnum):
    KeyCredentialManagerProvisioning = 0
    KeyCredentialManagerPinChange = 1
    KeyCredentialManagerPinReset = 2
// KeyCredentialManagerOperationType
pub const KeyCredentialManagerProvisioning: i32 = 0;
pub const KeyCredentialManagerPinChange: i32 = 1;
pub const KeyCredentialManagerPinReset: i32 = 2;
// KeyCredentialManagerOperationType
const (
	KeyCredentialManagerProvisioning int32 = 0
	KeyCredentialManagerPinChange int32 = 1
	KeyCredentialManagerPinReset int32 = 2
)
const
  KeyCredentialManagerProvisioning = 0;
  KeyCredentialManagerPinChange = 1;
  KeyCredentialManagerPinReset = 2;
// KeyCredentialManagerOperationType
pub const KeyCredentialManagerProvisioning: i32 = 0;
pub const KeyCredentialManagerPinChange: i32 = 1;
pub const KeyCredentialManagerPinReset: i32 = 2;
const
  KeyCredentialManagerProvisioning* = 0
  KeyCredentialManagerPinChange* = 1
  KeyCredentialManagerPinReset* = 2
enum KeyCredentialManagerOperationType : int {
    KeyCredentialManagerProvisioning = 0,
    KeyCredentialManagerPinChange = 1,
    KeyCredentialManagerPinReset = 2,
}
#define global KeyCredentialManagerProvisioning 0x0
#define global KeyCredentialManagerPinChange    0x1
#define global KeyCredentialManagerPinReset     0x2