Module.LoadSymbols(String) Method

Definition

Loads the symbols from the specified symbols file. This is equivalent to clicking the Load Symbols command on the context menu of the Modules window.

public:
 void LoadSymbols(System::String ^ SymbolPath);
public:
 void LoadSymbols(Platform::String ^ SymbolPath);
void LoadSymbols(std::wstring const & SymbolPath);
[System.Runtime.InteropServices.DispId(3100)]
public void LoadSymbols (string SymbolPath);
[<System.Runtime.InteropServices.DispId(3100)>]
abstract member LoadSymbols : string -> unit
Public Sub LoadSymbols (SymbolPath As String)

Parameters

SymbolPath
String

A string representing the path to the symbols file for the module.

Attributes

Remarks

If symbols for this module are visible on the search path, the SymbolPath parameter is ignored. If symbols are not visible, this method attempts to load them via the SymbolPath parameter.

If symbols are not available on the symbol path or from the SymbolPath parameter, then this method will either prompt you (if SuppressUI is false) or fail with E_FAIL and the message, "Symbols for module could not be loaded."

Applies to