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

适用于

另请参阅