Click or drag to resize

ModDebugLogMessage Structure

Represents a message that has been logged by a ModDebugHandler.

Namespace:  UMod.Debugging
Assembly:  UMod (in UMod.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
[SerializableAttribute]
public struct ModDebugLogMessage

The ModDebugLogMessage type exposes the following members.

Properties
  NameDescription
Public propertyHasException
Returns true if this message has an exception available. use ThrownException to access the exception.
Public propertyHasStackTrace
Returns true if this message has a stack trace available. Use StackTrace to access the stack trace.
Public propertyMessage
Get the content of the message.
Public propertyStackTrace
Get the stack trace for the message. If a stack trace was not generated then this value will be null.
Public propertyThrownException
Get the exception that was thrown. If an exception was not thrown then this value will be null.
Public propertyType
Get the type of the message.
Top
Methods
See Also