| Message {SMRUCC.Rsharp.Runtime.Components} | .NET clr documentation | 
The warning message and exception message
this runtime message object is a collection of the error message string
            
# namespace SMRUCC.Rsharp.Runtime.Components
export class Message {
   # [R# runtime] the R# scripting environment runtime stack trace
   environmentStack: StackFrame[];
   # the .NET log levels of current message object, value could be warning and error
   level: MSG_TYPES;
   # the message content about this error or warning
   message: string;
   # the source R# expression that cause this error or warning message
   source: Expression;
   # [VB.NET runtime] the R# engine stack trace
   trace: StackFrame[];
}
        
        environmentStack: StackFramelevel: MSG_TYPESsource: Expressiontrace: StackFrame