WindowsScriptEngineGetStackTrace Method |
Gets a string representation of the script call stack.
Namespace: Microsoft.ClearScript.Windows.CoreAssembly: ClearScript.Windows.Core (in ClearScript.Windows.Core.dll) Version: 7.4.5
Syntax public override string GetStackTrace()
Public Overrides Function GetStackTrace As String
public:
virtual String^ GetStackTrace() override
abstract GetStackTrace : unit -> string
override GetStackTrace : unit -> string
Return Value
StringThe script call stack formatted as a string.
Implements
IScriptEngineGetStackTraceRemarks
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.
The WindowsScriptEngine version of this method returns the empty string
if script debugging features have not been enabled for the instance.
See Also