System.Diagnostics.EventInstance
Represents language-neutral information for an event log entry.
namespace System.Diagnostics
{
public class EventInstance
{
public int CategoryId { get; set; }
public EventLogEntryType EntryType { get; set; }
public long InstanceId { get; set; }
public EventInstance(long instanceId, int categoryId);
public EventInstance(long instanceId, int categoryId, EventLogEntryType entryType);
}
}