LogMessage Class Properties
For a list of all members of this type, see LogMessage members.
| Name | Description |
 | Caption | A display caption for this message. |
 | CategoryName | The subsystem category under which this log message was issued. |
 | CategoryNames | An array of the individual category names within the specified category name which is period delimited. |
 | ClassName | If available, the full class name with namespace. May be null. |
 | ClassNames | An array of the individual elements of the class and namespace hierarchy. |
 | Description | A multi-line description included with the log message. |
 | Details | An XML description document that goes along with the log message. |
 | Exception | The outermost exception |
 | Exceptions | The array of exceptions associated with this log message. |
 | FileName | If available, the source file for the class and method of this message. May be null. |
 | HasException | True if there is an exception array associated with this message. |
 | HasMethodInfo | Indicates if the class name and method name are available. |
 | HasSourceLocation | Indicates if the file name and line number are available. |
 | HasThreadInfo | Indicates if the log message has related thread information. If false, some calls to thread information may throw exceptions. |
 | Id | A globally unique ID for this message. |
 | IndexOf | The index of this log message in the messages collection. |
 | LineNumber | If available, the line number for the class and method of this message. May be zero. |
 | LogSystem | The system that logged the message |
 | Message | A combined caption & description |
 | MethodFullName | A display string for the full class and method if available, otherwise an empty string. |
 | MethodName | If available, the method where this message was logged. May be null. |
 | Sequence | The underlying packet sequence number that ensures absolute, but non-monotonic, ordering of messages. |
 | Session | The session this message is related to. |
 | Severity | The severity level of this message. |
 | SourceCodeLocation | A display string for the full file name and line number if available, otherwise an empty string. |
 | ThreadId | The numeric ID of the thread this message was logged on. |
 | ThreadInfo | Our ThreadInfo for the thread which issued this log message. |
 | ThreadName | The display caption of the thread this message was logged on. |
 | Timestamp | The exact timestamp of this message. |
 | TimestampDateTime | Provide TimeStamp as DateTime for GLV (SourceGrid doesn't do DateTimeOffset) |
 | User | Optional. The application user associated with this message |
 | UserName | The short name of the user that generated this message |
Top