ホーム › Security.ExtensibleAuthenticationProtocol › EAP_INTERACTIVE_UI_DATA_TYPE
EAP_INTERACTIVE_UI_DATA_TYPE
列挙型メンバー 6
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| EapCredReq | 0 | 0x0 | データには EAP セキュリティ資格情報の再要求が含まれます。 |
| EapCredResp | 1 | 0x1 | データには EAP セキュリティ資格情報の再要求に対する応答が含まれます。 |
| EapCredExpiryReq | 2 | 0x2 | データには EAP セキュリティ資格情報の有効期限に関する要求が含まれます。 |
| EapCredExpiryResp | 3 | 0x3 | データには EAP セキュリティ資格情報の有効期限に関する応答が含まれます。 |
| EapCredLogonReq | 4 | 0x4 | データには EAP セキュリティ資格情報のログオン要求が含まれます。 |
| EapCredLogonResp | 5 | 0x5 | データには EAP セキュリティ資格情報のログオン応答が含まれます。 |
公式ドキュメント
EAP_INTERACTIVE_UI_DATA_TYPE 列挙型は、特定のサプリカント API 呼び出しに渡される対話型 UI コンテキストデータの種類の集合を指定します。
解説(Remarks)
EAP_INTERACTIVE_UI_DATA_TYPE は、シングルサインオン (SSO) をサポートするために使用されます。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 EAP_INTERACTIVE_UI_DATA_TYPE : int {
EapCredReq = 0,
EapCredResp = 1,
EapCredExpiryReq = 2,
EapCredExpiryResp = 3,
EapCredLogonReq = 4,
EapCredLogonResp = 5
} EAP_INTERACTIVE_UI_DATA_TYPE;public enum EAP_INTERACTIVE_UI_DATA_TYPE : int
{
EapCredReq = 0,
EapCredResp = 1,
EapCredExpiryReq = 2,
EapCredExpiryResp = 3,
EapCredLogonReq = 4,
EapCredLogonResp = 5,
}Public Enum EAP_INTERACTIVE_UI_DATA_TYPE As Integer
EapCredReq = 0
EapCredResp = 1
EapCredExpiryReq = 2
EapCredExpiryResp = 3
EapCredLogonReq = 4
EapCredLogonResp = 5
End Enumimport enum
class EAP_INTERACTIVE_UI_DATA_TYPE(enum.IntEnum):
EapCredReq = 0
EapCredResp = 1
EapCredExpiryReq = 2
EapCredExpiryResp = 3
EapCredLogonReq = 4
EapCredLogonResp = 5// EAP_INTERACTIVE_UI_DATA_TYPE
pub const EapCredReq: i32 = 0;
pub const EapCredResp: i32 = 1;
pub const EapCredExpiryReq: i32 = 2;
pub const EapCredExpiryResp: i32 = 3;
pub const EapCredLogonReq: i32 = 4;
pub const EapCredLogonResp: i32 = 5;// EAP_INTERACTIVE_UI_DATA_TYPE
const (
EapCredReq int32 = 0
EapCredResp int32 = 1
EapCredExpiryReq int32 = 2
EapCredExpiryResp int32 = 3
EapCredLogonReq int32 = 4
EapCredLogonResp int32 = 5
)const
EapCredReq = 0;
EapCredResp = 1;
EapCredExpiryReq = 2;
EapCredExpiryResp = 3;
EapCredLogonReq = 4;
EapCredLogonResp = 5;// EAP_INTERACTIVE_UI_DATA_TYPE
pub const EapCredReq: i32 = 0;
pub const EapCredResp: i32 = 1;
pub const EapCredExpiryReq: i32 = 2;
pub const EapCredExpiryResp: i32 = 3;
pub const EapCredLogonReq: i32 = 4;
pub const EapCredLogonResp: i32 = 5;const
EapCredReq* = 0
EapCredResp* = 1
EapCredExpiryReq* = 2
EapCredExpiryResp* = 3
EapCredLogonReq* = 4
EapCredLogonResp* = 5enum EAP_INTERACTIVE_UI_DATA_TYPE : int {
EapCredReq = 0,
EapCredResp = 1,
EapCredExpiryReq = 2,
EapCredExpiryResp = 3,
EapCredLogonReq = 4,
EapCredLogonResp = 5,
}#define global EapCredReq 0x0
#define global EapCredResp 0x1
#define global EapCredExpiryReq 0x2
#define global EapCredExpiryResp 0x3
#define global EapCredLogonReq 0x4
#define global EapCredLogonResp 0x5