ホーム › NetworkManagement.Dhcp › DHCP_POL_COMPARATOR
DHCP_POL_COMPARATOR
列挙型メンバー 6
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| DhcpCompEqual | 0 | 0x0 | 判定基準で指定された DHCP クライアント メッセージのフィールドが、条件で指定された値と完全に一致しなければなりません。 |
| DhcpCompNotEqual | 1 | 0x1 | 判定基準で指定された DHCP クライアント メッセージのフィールドが、条件で指定された値と完全に一致してはなりません。 |
| DhcpCompBeginsWith | 2 | 0x2 | 判定基準で指定された DHCP クライアント メッセージのフィールドが、条件で指定された値で始まらなければなりません。 |
| DhcpCompNotBeginWith | 3 | 0x3 | 判定基準で指定された DHCP クライアント メッセージのフィールドが、条件で指定された値で始まってはなりません。 |
| DhcpCompEndsWith | 4 | 0x4 | |
| DhcpCompNotEndWith | 5 | 0x5 |
公式ドキュメント
DHCP_POL_COMPARATOR 列挙型は、DHCP サーバー ポリシーを構築する際に条件で使用する比較演算子を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 DHCP_POL_COMPARATOR : int {
DhcpCompEqual = 0,
DhcpCompNotEqual = 1,
DhcpCompBeginsWith = 2,
DhcpCompNotBeginWith = 3,
DhcpCompEndsWith = 4,
DhcpCompNotEndWith = 5
} DHCP_POL_COMPARATOR;public enum DHCP_POL_COMPARATOR : int
{
DhcpCompEqual = 0,
DhcpCompNotEqual = 1,
DhcpCompBeginsWith = 2,
DhcpCompNotBeginWith = 3,
DhcpCompEndsWith = 4,
DhcpCompNotEndWith = 5,
}Public Enum DHCP_POL_COMPARATOR As Integer
DhcpCompEqual = 0
DhcpCompNotEqual = 1
DhcpCompBeginsWith = 2
DhcpCompNotBeginWith = 3
DhcpCompEndsWith = 4
DhcpCompNotEndWith = 5
End Enumimport enum
class DHCP_POL_COMPARATOR(enum.IntEnum):
DhcpCompEqual = 0
DhcpCompNotEqual = 1
DhcpCompBeginsWith = 2
DhcpCompNotBeginWith = 3
DhcpCompEndsWith = 4
DhcpCompNotEndWith = 5// DHCP_POL_COMPARATOR
pub const DhcpCompEqual: i32 = 0;
pub const DhcpCompNotEqual: i32 = 1;
pub const DhcpCompBeginsWith: i32 = 2;
pub const DhcpCompNotBeginWith: i32 = 3;
pub const DhcpCompEndsWith: i32 = 4;
pub const DhcpCompNotEndWith: i32 = 5;// DHCP_POL_COMPARATOR
const (
DhcpCompEqual int32 = 0
DhcpCompNotEqual int32 = 1
DhcpCompBeginsWith int32 = 2
DhcpCompNotBeginWith int32 = 3
DhcpCompEndsWith int32 = 4
DhcpCompNotEndWith int32 = 5
)const
DhcpCompEqual = 0;
DhcpCompNotEqual = 1;
DhcpCompBeginsWith = 2;
DhcpCompNotBeginWith = 3;
DhcpCompEndsWith = 4;
DhcpCompNotEndWith = 5;// DHCP_POL_COMPARATOR
pub const DhcpCompEqual: i32 = 0;
pub const DhcpCompNotEqual: i32 = 1;
pub const DhcpCompBeginsWith: i32 = 2;
pub const DhcpCompNotBeginWith: i32 = 3;
pub const DhcpCompEndsWith: i32 = 4;
pub const DhcpCompNotEndWith: i32 = 5;const
DhcpCompEqual* = 0
DhcpCompNotEqual* = 1
DhcpCompBeginsWith* = 2
DhcpCompNotBeginWith* = 3
DhcpCompEndsWith* = 4
DhcpCompNotEndWith* = 5enum DHCP_POL_COMPARATOR : int {
DhcpCompEqual = 0,
DhcpCompNotEqual = 1,
DhcpCompBeginsWith = 2,
DhcpCompNotBeginWith = 3,
DhcpCompEndsWith = 4,
DhcpCompNotEndWith = 5,
}#define global DhcpCompEqual 0x0
#define global DhcpCompNotEqual 0x1
#define global DhcpCompBeginsWith 0x2
#define global DhcpCompNotBeginWith 0x3
#define global DhcpCompEndsWith 0x4
#define global DhcpCompNotEndWith 0x5