ホーム › Security.NetworkAccessProtection › RemoteConfigurationType
RemoteConfigurationType
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| remoteConfigTypeMachine | 1 | 0x1 | コンポーネントは、マシン上で直接リモート構成を行うことを許可します。 |
| remoteConfigTypeConfigBlob | 2 | 0x2 | コンポーネントは、メモリに読み込まれたバイナリ ラージ オブジェクト (BLOB) を介したリモート構成を許可します。 |
公式ドキュメント
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 RemoteConfigurationType : int {
remoteConfigTypeMachine = 1,
remoteConfigTypeConfigBlob = 2
} RemoteConfigurationType;public enum RemoteConfigurationType : int
{
remoteConfigTypeMachine = 1,
remoteConfigTypeConfigBlob = 2,
}Public Enum RemoteConfigurationType As Integer
remoteConfigTypeMachine = 1
remoteConfigTypeConfigBlob = 2
End Enumimport enum
class RemoteConfigurationType(enum.IntEnum):
remoteConfigTypeMachine = 1
remoteConfigTypeConfigBlob = 2// RemoteConfigurationType
pub const remoteConfigTypeMachine: i32 = 1;
pub const remoteConfigTypeConfigBlob: i32 = 2;// RemoteConfigurationType
const (
remoteConfigTypeMachine int32 = 1
remoteConfigTypeConfigBlob int32 = 2
)const
remoteConfigTypeMachine = 1;
remoteConfigTypeConfigBlob = 2;// RemoteConfigurationType
pub const remoteConfigTypeMachine: i32 = 1;
pub const remoteConfigTypeConfigBlob: i32 = 2;const
remoteConfigTypeMachine* = 1
remoteConfigTypeConfigBlob* = 2enum RemoteConfigurationType : int {
remoteConfigTypeMachine = 1,
remoteConfigTypeConfigBlob = 2,
}#define global remoteConfigTypeMachine 0x1
#define global remoteConfigTypeConfigBlob 0x2