EventLogEntry.EventID Propiedad

Definición

Precaución

This property has been deprecated. Please use System.Diagnostics.EventLogEntry.InstanceId instead. http://go.microsoft.com/fwlink/?linkid=14202

Precaución

This property has been deprecated. Please use System.Diagnostics.EventLogEntry.InstanceId instead. https://go.microsoft.com/fwlink/?linkid=14202

Precaución

EventLogEntry.EventID has been deprecated. Use System.Diagnostics.EventLogEntry.InstanceId instead.

Obtiene el identificador de evento específico de la aplicación para la entrada de evento actual.

public:
 property int EventID { int get(); };
[System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.EventLogEntry.InstanceId instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
public int EventID { get; }
[System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.EventLogEntry.InstanceId instead.  https://go.microsoft.com/fwlink/?linkid=14202")]
public int EventID { get; }
[System.Obsolete("EventLogEntry.EventID has been deprecated. Use System.Diagnostics.EventLogEntry.InstanceId instead.")]
public int EventID { get; }
public int EventID { get; }
[<System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.EventLogEntry.InstanceId instead.  http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.EventID : int
[<System.Obsolete("This property has been deprecated.  Please use System.Diagnostics.EventLogEntry.InstanceId instead.  https://go.microsoft.com/fwlink/?linkid=14202")>]
member this.EventID : int
[<System.Obsolete("EventLogEntry.EventID has been deprecated. Use System.Diagnostics.EventLogEntry.InstanceId instead.")>]
member this.EventID : int
member this.EventID : int
Public ReadOnly Property EventID As Integer

Valor de propiedad

Identificador específico de la aplicación para el mensaje de evento.

Atributos

Comentarios

Este valor representa el identificador de evento de la entrada en el registro de eventos, con los dos bits superiores enmascarados. La InstanceId propiedad de una entrada del registro de eventos representa el identificador completo de recursos de 32 bits para el evento en el archivo de recursos del mensaje para el origen del evento. Dos entradas del registro de eventos del mismo origen pueden tener valores coincidentes EventID , pero tienen valores diferentes InstanceId debido a diferencias en los dos bits principales del identificador de evento.

Si la aplicación escribió la entrada de evento mediante uno de los WriteEntry métodos , la EventID propiedad coincide con el parámetro opcional eventId . Si la aplicación escribió el evento mediante WriteEvent o la API ReportEventde Windows , la EventID propiedad coincide con el identificador de recurso del evento, con los dos bits principales enmascarados.

Se aplica a

Consulte también