共用方式為


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?)

適用於

另請參閱