ホーム › System.EventLog › EVT_CHANNEL_ISOLATION_TYPE
EVT_CHANNEL_ISOLATION_TYPE
列挙型メンバー 3
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| EvtChannelIsolationTypeApplication | 0 | 0x0 | チャネルへのオープンなアクセスを提供します。 |
| EvtChannelIsolationTypeSystem | 1 | 0x1 | チャネルへの制限付きアクセスを提供します。システム サービス アカウントで実行されるアプリケーションやドライバー、またはコンピューターの正常性に関連するイベントをログに記録するアプリケーションで使用されます。 |
| EvtChannelIsolationTypeCustom | 2 | 0x2 | チャネルへのカスタム アクセスを提供します。 |
公式ドキュメント
チャネルに適用する既定のアクセス許可を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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 EVT_CHANNEL_ISOLATION_TYPE : int {
EvtChannelIsolationTypeApplication = 0,
EvtChannelIsolationTypeSystem = 1,
EvtChannelIsolationTypeCustom = 2
} EVT_CHANNEL_ISOLATION_TYPE;public enum EVT_CHANNEL_ISOLATION_TYPE : int
{
EvtChannelIsolationTypeApplication = 0,
EvtChannelIsolationTypeSystem = 1,
EvtChannelIsolationTypeCustom = 2,
}Public Enum EVT_CHANNEL_ISOLATION_TYPE As Integer
EvtChannelIsolationTypeApplication = 0
EvtChannelIsolationTypeSystem = 1
EvtChannelIsolationTypeCustom = 2
End Enumimport enum
class EVT_CHANNEL_ISOLATION_TYPE(enum.IntEnum):
EvtChannelIsolationTypeApplication = 0
EvtChannelIsolationTypeSystem = 1
EvtChannelIsolationTypeCustom = 2// EVT_CHANNEL_ISOLATION_TYPE
pub const EvtChannelIsolationTypeApplication: i32 = 0;
pub const EvtChannelIsolationTypeSystem: i32 = 1;
pub const EvtChannelIsolationTypeCustom: i32 = 2;// EVT_CHANNEL_ISOLATION_TYPE
const (
EvtChannelIsolationTypeApplication int32 = 0
EvtChannelIsolationTypeSystem int32 = 1
EvtChannelIsolationTypeCustom int32 = 2
)const
EvtChannelIsolationTypeApplication = 0;
EvtChannelIsolationTypeSystem = 1;
EvtChannelIsolationTypeCustom = 2;// EVT_CHANNEL_ISOLATION_TYPE
pub const EvtChannelIsolationTypeApplication: i32 = 0;
pub const EvtChannelIsolationTypeSystem: i32 = 1;
pub const EvtChannelIsolationTypeCustom: i32 = 2;const
EvtChannelIsolationTypeApplication* = 0
EvtChannelIsolationTypeSystem* = 1
EvtChannelIsolationTypeCustom* = 2enum EVT_CHANNEL_ISOLATION_TYPE : int {
EvtChannelIsolationTypeApplication = 0,
EvtChannelIsolationTypeSystem = 1,
EvtChannelIsolationTypeCustom = 2,
}#define global EvtChannelIsolationTypeApplication 0x0
#define global EvtChannelIsolationTypeSystem 0x1
#define global EvtChannelIsolationTypeCustom 0x2