| Name | Description |
 | AppDomainName | The current app domain's friendly name |
 | EntryAssembly | The current app domain's entry-point assembly name |
 | EventId | A unique integer representing the index the event was written since program start |
 | EventTime | Returns the time when the log event was raised |
 | Exception | An instance of the Exception class or null if none provided |
 | FileColumn | The file column where the log was called from. |
 | FileLine | The file line number where the log was called from. |
 | FileLocation | Returns the full message of Message + Location + Exception |
 | FileName | The file name where the log was called from or null if no file dataList available/configured. |
 | FullMessage | Returns the full message of Message + Location + Exception |
 | IlOffset | Returns the IL offset within the calling method |
 | Location | The full method information: Type.Name(Args) |
 | LogCurrent | returns the text given the most recent call to Log.Start() that has not yet been Disponsed |
 | LogStack | returns the text given to all calls to Log.Start() that has not yet been Disponsed separated by '::' |
 | ManagedThreadId | The managed thread id that called the log routine |
 | ManagedThreadName | The managed thread name (if any) or String.Empty |
 | Message | The formatted string of the message or String.Empty if none |
 | Method | The full method information: Type.Name(Args) |
 | MethodArgs | The method's argument names and types. |
 | MethodAssembly | The assembly's name that contained the method where the log was called from. |
 | MethodAssemblyVersion | The assembly's version that contained the method where the log was called from. |
 | MethodName | The method where the log was called from. |
 | MethodType | The type containing the method where the log was called from. |
 | MethodTypeName | The unqualified type containing the method where the log was called from. |
 | ProcessId | The current process id |
 | ProcessName | The current process name |
 | ThreadPrincipalName | The logging thread's 'CurrentPrincipal.Identity.Name' property |