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

NapNotifyType

列挙型
基底型i4

メンバー 3

名前10進16進説明
napNotifyTypeUnknown00x0使用されません。
napNotifyTypeServiceState10x1

NapAgent サービスの状態変更の通知です。

napNotifyTypeServiceState 型の通知は、NapAgent サービスが停止または開始するたびに送信されます。

napNotifyTypeQuarState20x2

検疫状態の変更の通知です。

napNotifyTypeQuarState 型の通知は、分離状態が変化するたびに送信されます。詳細については、IsolationState を参照してください。

公式ドキュメント

Note ネットワーク アクセス保護 (Network Access Protection) プラットフォームは、Windows 10 以降では使用できません
NapAgent サービスによって送信されるサービス通知の種類を列挙します。NapAgent は検疫エージェント (Quarantine Agent) とも呼ばれます。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
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 Enum
import 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* = 2
enum NapNotifyType : int {
    napNotifyTypeUnknown = 0,
    napNotifyTypeServiceState = 1,
    napNotifyTypeQuarState = 2,
}
#define global napNotifyTypeUnknown      0x0
#define global napNotifyTypeServiceState 0x1
#define global napNotifyTypeQuarState    0x2