ScriptEngine.GetStackTrace Method |
Gets a string representation of the script call stack.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.5.0
Syntaxpublic abstract string GetStackTrace()
Public MustOverride Function GetStackTrace As String
public:
virtual String^ GetStackTrace() abstract
abstract GetStackTrace : unit -> string
Return Value
StringThe script call stack formatted as a string.
Implements
IScriptEngine.GetStackTrace()
Remarks
This method returns an empty string if the script engine is not executing script code.
The stack trace text format is defined by the script engine.
See Also