ホーム › Security.NetworkAccessProtection › NapNotifyType
NapNotifyType
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| napNotifyTypeUnknown | 0 | 0x0 | 使用されません。 |
| napNotifyTypeServiceState | 1 | 0x1 | NapAgent サービスの状態変更の通知です。 napNotifyTypeServiceState 型の通知は、NapAgent サービスが停止または開始するたびに送信されます。 |
| napNotifyTypeQuarState | 2 | 0x2 | 検疫状態の変更の通知です。 napNotifyTypeQuarState 型の通知は、分離状態が変化するたびに送信されます。詳細については、IsolationState を参照してください。 |
公式ドキュメント
Note ネットワーク アクセス保護 (Network Access Protection) プラットフォームは、Windows 10 以降では使用できません
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 NapNotifyType : int {
napNotifyTypeUnknown = 0,
napNotifyTypeServiceState = 1,
napNotifyTypeQuarState = 2
} NapNotifyType;public enum NapNotifyType : int
{
napNotifyTypeUnknown = 0,
napNotifyTypeServiceState = 1,
napNotifyTypeQuarState = 2,
}Public Enum NapNotifyType As Integer
napNotifyTypeUnknown = 0
napNotifyTypeServiceState = 1
napNotifyTypeQuarState = 2
End Enumimport enum
class NapNotifyType(enum.IntEnum):
napNotifyTypeUnknown = 0
napNotifyTypeServiceState = 1
napNotifyTypeQuarState = 2// NapNotifyType
pub const napNotifyTypeUnknown: i32 = 0;
pub const napNotifyTypeServiceState: i32 = 1;
pub const napNotifyTypeQuarState: i32 = 2;// NapNotifyType
const (
napNotifyTypeUnknown int32 = 0
napNotifyTypeServiceState int32 = 1
napNotifyTypeQuarState int32 = 2
)const
napNotifyTypeUnknown = 0;
napNotifyTypeServiceState = 1;
napNotifyTypeQuarState = 2;// NapNotifyType
pub const napNotifyTypeUnknown: i32 = 0;
pub const napNotifyTypeServiceState: i32 = 1;
pub const napNotifyTypeQuarState: i32 = 2;const
napNotifyTypeUnknown* = 0
napNotifyTypeServiceState* = 1
napNotifyTypeQuarState* = 2enum NapNotifyType : int {
napNotifyTypeUnknown = 0,
napNotifyTypeServiceState = 1,
napNotifyTypeQuarState = 2,
}#define global napNotifyTypeUnknown 0x0
#define global napNotifyTypeServiceState 0x1
#define global napNotifyTypeQuarState 0x2