Поделиться через


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

Применяется к

См. также раздел