ホーム › NetworkManagement.NetworkPolicyServer › RADIUS_EXTENSION_POINT
RADIUS_EXTENSION_POINT
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| repAuthentication | 0 | 0x0 | 要求処理のうち認証が行われる位置で RadiusExtensionProcess2 関数が呼び出されることを示します。 |
| repAuthorization | 1 | 0x1 | 要求処理のうち承認が行われる位置で RadiusExtensionProcess2 関数が呼び出されることを示します。 |
公式ドキュメント
Note Internet Authentication Service (IAS) は、Windows Server 2008 以降 Network Policy Server (NPS) に名称が変更されました。このトピックの内容は IAS と NPS の両方に適用されます。
解説(Remarks)
RADIUS_EXTENSION_CONTROL_BLOCK 構造体の repPoint メンバーは RADIUS_EXTENSION_POINT 型です。
要求処理を示す図については、 About NPS Extensions を参照してください。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 RADIUS_EXTENSION_POINT : int {
repAuthentication = 0,
repAuthorization = 1
} RADIUS_EXTENSION_POINT;public enum RADIUS_EXTENSION_POINT : int
{
repAuthentication = 0,
repAuthorization = 1,
}Public Enum RADIUS_EXTENSION_POINT As Integer
repAuthentication = 0
repAuthorization = 1
End Enumimport enum
class RADIUS_EXTENSION_POINT(enum.IntEnum):
repAuthentication = 0
repAuthorization = 1// RADIUS_EXTENSION_POINT
pub const repAuthentication: i32 = 0;
pub const repAuthorization: i32 = 1;// RADIUS_EXTENSION_POINT
const (
repAuthentication int32 = 0
repAuthorization int32 = 1
)const
repAuthentication = 0;
repAuthorization = 1;// RADIUS_EXTENSION_POINT
pub const repAuthentication: i32 = 0;
pub const repAuthorization: i32 = 1;const
repAuthentication* = 0
repAuthorization* = 1enum RADIUS_EXTENSION_POINT : int {
repAuthentication = 0,
repAuthorization = 1,
}#define global repAuthentication 0x0
#define global repAuthorization 0x1