Type: BCS.Sym3.Operator.Runtime.IDebugService

Debug service

Methods


ExitApplication

Exits application

  • Example:
This example shows you how to use this method:

            Client.Debug.ExitApplication();
            

GarbageCollect

Force Garbage collection

  • Example:
This example shows you how to use this method:

            Client.Debug.GarbageCollect();
            

HideToolbar

Hides the debug toolbar

  • Example:
This example shows you how to use this method:

            Client.Debug.HideToolbar();
            

OpenLogFile

Opens the log file

  • Example:
This example shows you how to use this method:

            Client.Debug.OpenLogFile();
            

ShowControlWatcher

Opens the control watcher tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowControlWatcher();
            

ShowLiveValues

Opens the Live Values tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowLiveValues();
            

ShowMemoryProfiling

Opens memory profiling tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowMemoryProfiling();
            

ShowMonitorAnalyser

Opens the monitor analyser tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowMonitorAnalyser();
            

ShowOutput

Opens the output window

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowOutput();
            

ShowScriptEditor

Opens script editor tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowScriptEditor();
            

ShowToolbar

Shows the debug toolbar

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowToolbar();
            

ShowVisualTree

Opens the Visual tree tool

  • Example:
This example shows you how to use this method:

            Client.Debug.ShowVisualTree();
            

Trace(System.String)

Prints a message in the debug output window

  • Parameters:
    • text: string to write in the debug output window
  • Example:
This example shows you how to use this method:

            Client.Debug.Trace("this is a test");