EventLogInformation.Attributes Property

Definition

Gets the file attributes of the log file associated with the log.

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)

Property Value

Returns an integer value. This value can be null.

Remarks

The values of this property are the same as those of the FileAttributes type. To make working with this property easier, you can convert the value to that type using the following code:

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

Applies to

See also