ScriptStream.PrintStackTrace Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Writes a string that describes the contents of the call stack to the Out stream.
Overloads
PrintStackTrace() |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes a string that describes the current contents of the call stack. The string is written to the Out stream. |
PrintStackTrace(Exception) |
This API supports the product infrastructure and is not intended to be used directly from your code. Writes a string that describes the contents of the call stack at the time the specified exception was thrown. The string is written to the Out stream. |
PrintStackTrace()
Writes a string that describes the current contents of the call stack. The string is written to the Out stream.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static void PrintStackTrace();
public static void PrintStackTrace ();
static member PrintStackTrace : unit -> unit
Public Shared Sub PrintStackTrace ()
See also
Applies to
PrintStackTrace(Exception)
Writes a string that describes the contents of the call stack at the time the specified exception was thrown. The string is written to the Out stream.
This API supports the product infrastructure and is not intended to be used directly from your code.
public:
static void PrintStackTrace(Exception ^ e);
public static void PrintStackTrace (Exception e);
static member PrintStackTrace : Exception -> unit
Public Shared Sub PrintStackTrace (e As Exception)
Parameters
The exception that was thrown.