ホーム › System.EventLog › EVT_CHANNEL_SID_TYPE
EVT_CHANNEL_SID_TYPE
列挙型メンバー 2
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| EvtChannelSidTypeNone | 0 | 0x0 | イベントをログに記録したプリンシパルの SID をイベントに含めません。 |
| EvtChannelSidTypePublishing | 1 | 0x1 | イベントをログに記録したプリンシパルの SID をイベントに含めます。 |
公式ドキュメント
イベントをログに記録したプリンシパルのセキュリティ識別子 (SID) をイベントに含めるかどうかを決定する値を定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は 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_SID_TYPE : int {
EvtChannelSidTypeNone = 0,
EvtChannelSidTypePublishing = 1
} EVT_CHANNEL_SID_TYPE;public enum EVT_CHANNEL_SID_TYPE : int
{
EvtChannelSidTypeNone = 0,
EvtChannelSidTypePublishing = 1,
}Public Enum EVT_CHANNEL_SID_TYPE As Integer
EvtChannelSidTypeNone = 0
EvtChannelSidTypePublishing = 1
End Enumimport enum
class EVT_CHANNEL_SID_TYPE(enum.IntEnum):
EvtChannelSidTypeNone = 0
EvtChannelSidTypePublishing = 1// EVT_CHANNEL_SID_TYPE
pub const EvtChannelSidTypeNone: i32 = 0;
pub const EvtChannelSidTypePublishing: i32 = 1;// EVT_CHANNEL_SID_TYPE
const (
EvtChannelSidTypeNone int32 = 0
EvtChannelSidTypePublishing int32 = 1
)const
EvtChannelSidTypeNone = 0;
EvtChannelSidTypePublishing = 1;// EVT_CHANNEL_SID_TYPE
pub const EvtChannelSidTypeNone: i32 = 0;
pub const EvtChannelSidTypePublishing: i32 = 1;const
EvtChannelSidTypeNone* = 0
EvtChannelSidTypePublishing* = 1enum EVT_CHANNEL_SID_TYPE : int {
EvtChannelSidTypeNone = 0,
EvtChannelSidTypePublishing = 1,
}#define global EvtChannelSidTypeNone 0x0
#define global EvtChannelSidTypePublishing 0x1