Condividi tramite


EventLogInformation.Attributes Proprietà

Definizione

Ottiene gli attributi del file di log associato a quest'ultimo.

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)

Valore della proprietà

Restituisce un valore intero. Questo valore può essere Null.

Commenti

I valori di questa proprietà sono uguali a quelli del FileAttributes tipo. Per semplificare l'uso di questa proprietà, è possibile convertire il valore in tale tipo usando il codice seguente:

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

Si applica a

Vedi anche