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

KeyCredentialManagerOperationErrorStates

列挙型フラグ
基底型i4

メンバー 8

名前10進16進
KeyCredentialManagerOperationErrorStateNone00x0
KeyCredentialManagerOperationErrorStateDeviceJoinFailure10x1
KeyCredentialManagerOperationErrorStateTokenFailure20x2
KeyCredentialManagerOperationErrorStateCertificateFailure40x4
KeyCredentialManagerOperationErrorStateRemoteSessionFailure80x8
KeyCredentialManagerOperationErrorStatePolicyFailure160x10
KeyCredentialManagerOperationErrorStateHardwareFailure320x20
KeyCredentialManagerOperationErrorStatePinExistsFailure640x40

各言語での定義

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

typedef enum KeyCredentialManagerOperationErrorStates : int {
    KeyCredentialManagerOperationErrorStateNone = 0,
    KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1,
    KeyCredentialManagerOperationErrorStateTokenFailure = 2,
    KeyCredentialManagerOperationErrorStateCertificateFailure = 4,
    KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8,
    KeyCredentialManagerOperationErrorStatePolicyFailure = 16,
    KeyCredentialManagerOperationErrorStateHardwareFailure = 32,
    KeyCredentialManagerOperationErrorStatePinExistsFailure = 64
} KeyCredentialManagerOperationErrorStates;
[Flags]
public enum KeyCredentialManagerOperationErrorStates : int
{
    KeyCredentialManagerOperationErrorStateNone = 0,
    KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1,
    KeyCredentialManagerOperationErrorStateTokenFailure = 2,
    KeyCredentialManagerOperationErrorStateCertificateFailure = 4,
    KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8,
    KeyCredentialManagerOperationErrorStatePolicyFailure = 16,
    KeyCredentialManagerOperationErrorStateHardwareFailure = 32,
    KeyCredentialManagerOperationErrorStatePinExistsFailure = 64,
}
<Flags>
Public Enum KeyCredentialManagerOperationErrorStates As Integer
    KeyCredentialManagerOperationErrorStateNone = 0
    KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1
    KeyCredentialManagerOperationErrorStateTokenFailure = 2
    KeyCredentialManagerOperationErrorStateCertificateFailure = 4
    KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8
    KeyCredentialManagerOperationErrorStatePolicyFailure = 16
    KeyCredentialManagerOperationErrorStateHardwareFailure = 32
    KeyCredentialManagerOperationErrorStatePinExistsFailure = 64
End Enum
import enum

class KeyCredentialManagerOperationErrorStates(enum.IntFlag):
    KeyCredentialManagerOperationErrorStateNone = 0
    KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1
    KeyCredentialManagerOperationErrorStateTokenFailure = 2
    KeyCredentialManagerOperationErrorStateCertificateFailure = 4
    KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8
    KeyCredentialManagerOperationErrorStatePolicyFailure = 16
    KeyCredentialManagerOperationErrorStateHardwareFailure = 32
    KeyCredentialManagerOperationErrorStatePinExistsFailure = 64
// KeyCredentialManagerOperationErrorStates (flags)
pub const KeyCredentialManagerOperationErrorStateNone: i32 = 0;
pub const KeyCredentialManagerOperationErrorStateDeviceJoinFailure: i32 = 1;
pub const KeyCredentialManagerOperationErrorStateTokenFailure: i32 = 2;
pub const KeyCredentialManagerOperationErrorStateCertificateFailure: i32 = 4;
pub const KeyCredentialManagerOperationErrorStateRemoteSessionFailure: i32 = 8;
pub const KeyCredentialManagerOperationErrorStatePolicyFailure: i32 = 16;
pub const KeyCredentialManagerOperationErrorStateHardwareFailure: i32 = 32;
pub const KeyCredentialManagerOperationErrorStatePinExistsFailure: i32 = 64;
// KeyCredentialManagerOperationErrorStates
const (
	KeyCredentialManagerOperationErrorStateNone int32 = 0
	KeyCredentialManagerOperationErrorStateDeviceJoinFailure int32 = 1
	KeyCredentialManagerOperationErrorStateTokenFailure int32 = 2
	KeyCredentialManagerOperationErrorStateCertificateFailure int32 = 4
	KeyCredentialManagerOperationErrorStateRemoteSessionFailure int32 = 8
	KeyCredentialManagerOperationErrorStatePolicyFailure int32 = 16
	KeyCredentialManagerOperationErrorStateHardwareFailure int32 = 32
	KeyCredentialManagerOperationErrorStatePinExistsFailure int32 = 64
)
const
  KeyCredentialManagerOperationErrorStateNone = 0;
  KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1;
  KeyCredentialManagerOperationErrorStateTokenFailure = 2;
  KeyCredentialManagerOperationErrorStateCertificateFailure = 4;
  KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8;
  KeyCredentialManagerOperationErrorStatePolicyFailure = 16;
  KeyCredentialManagerOperationErrorStateHardwareFailure = 32;
  KeyCredentialManagerOperationErrorStatePinExistsFailure = 64;
// KeyCredentialManagerOperationErrorStates
pub const KeyCredentialManagerOperationErrorStateNone: i32 = 0;
pub const KeyCredentialManagerOperationErrorStateDeviceJoinFailure: i32 = 1;
pub const KeyCredentialManagerOperationErrorStateTokenFailure: i32 = 2;
pub const KeyCredentialManagerOperationErrorStateCertificateFailure: i32 = 4;
pub const KeyCredentialManagerOperationErrorStateRemoteSessionFailure: i32 = 8;
pub const KeyCredentialManagerOperationErrorStatePolicyFailure: i32 = 16;
pub const KeyCredentialManagerOperationErrorStateHardwareFailure: i32 = 32;
pub const KeyCredentialManagerOperationErrorStatePinExistsFailure: i32 = 64;
const
  KeyCredentialManagerOperationErrorStateNone* = 0
  KeyCredentialManagerOperationErrorStateDeviceJoinFailure* = 1
  KeyCredentialManagerOperationErrorStateTokenFailure* = 2
  KeyCredentialManagerOperationErrorStateCertificateFailure* = 4
  KeyCredentialManagerOperationErrorStateRemoteSessionFailure* = 8
  KeyCredentialManagerOperationErrorStatePolicyFailure* = 16
  KeyCredentialManagerOperationErrorStateHardwareFailure* = 32
  KeyCredentialManagerOperationErrorStatePinExistsFailure* = 64
enum KeyCredentialManagerOperationErrorStates : int {
    KeyCredentialManagerOperationErrorStateNone = 0,
    KeyCredentialManagerOperationErrorStateDeviceJoinFailure = 1,
    KeyCredentialManagerOperationErrorStateTokenFailure = 2,
    KeyCredentialManagerOperationErrorStateCertificateFailure = 4,
    KeyCredentialManagerOperationErrorStateRemoteSessionFailure = 8,
    KeyCredentialManagerOperationErrorStatePolicyFailure = 16,
    KeyCredentialManagerOperationErrorStateHardwareFailure = 32,
    KeyCredentialManagerOperationErrorStatePinExistsFailure = 64,
}
#define global KeyCredentialManagerOperationErrorStateNone                 0x0
#define global KeyCredentialManagerOperationErrorStateDeviceJoinFailure    0x1
#define global KeyCredentialManagerOperationErrorStateTokenFailure         0x2
#define global KeyCredentialManagerOperationErrorStateCertificateFailure   0x4
#define global KeyCredentialManagerOperationErrorStateRemoteSessionFailure 0x8
#define global KeyCredentialManagerOperationErrorStatePolicyFailure        0x10
#define global KeyCredentialManagerOperationErrorStateHardwareFailure      0x20
#define global KeyCredentialManagerOperationErrorStatePinExistsFailure     0x40
; ※フラグ列挙型。ビットORで組み合わせ可(例: FOO|BAR)。