Class LogEntry
Class holds LogEntry properties
Inheritance
System.Object
LogEntry
Namespace: PnP.Framework.Diagnostics
Assembly: PnP.Framework.dll
Syntax
public class LogEntry : object
Properties
CorrelationId
Gets or sets CorrelationId of type Guid
Declaration
public Guid CorrelationId { get; set; }
Property Value
Guid
|
EllapsedMilliseconds
Gets or sets elapsed Log time in MilliSeconds
Declaration
public long EllapsedMilliseconds { get; set; }
Property Value
System.Int64
|
Exception
Gets or sets Log Exception
Declaration
public Exception Exception { get; set; }
Property Value
Exception
|
Message
Gets or sets Log message
Declaration
public string Message { get; set; }
Property Value
System.String
|
Source
Gets or sets Log source
Declaration
public string Source { get; set; }
Property Value
System.String
|
ThreadId
Gets or sets Log ThreadId
Declaration
public int ThreadId { get; set; }
Property Value
System.Int32
|