EventLogInformation.Attributes Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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?)