次の方法で共有


EventLogInformation.Attributes プロパティ

定義

ログに関連付けられているログ ファイルのファイル属性を取得します。

public:
 property Nullable<int> Attributes { Nullable<int> get(); };
public int? Attributes { get; }
member this.Attributes : Nullable<int>
Public ReadOnly Property Attributes As Nullable(Of Integer)

プロパティ値

整数値が返されます。 この値は null の場合もあります。

注釈

このプロパティの値は、 型の FileAttributes 値と同じです。 このプロパティの操作を容易にするために、次のコードを使用して値をその型に変換できます。

using System.Diagnostics.Eventing.Reader;
using System.IO;

EventLogInformation eventLogInformation;
FileAttributes? fileAttributes = (FileAttributes?)eventLogInformation.Attributes;
Imports System.Diagnostics.Eventing.Reader
Imports System.IO

Dim eventLogInformation As EventLogInformation
Dim fileAttributes = CType(eventLogInformation.Attributes, FileAttributes?)

適用対象

こちらもご覧ください