Debugger3.SetSymbolSettings(String, String, String, Boolean, Boolean) 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.
Sets various settings for the .PDB symbols used by Visual Studio for debugging and forces reloading of all symbols.
public:
void SetSymbolSettings(System::String ^ SymbolPath, System::String ^ SymbolPathState, System::String ^ SymbolCachePath, bool OnlyLoadSymbolsManually, bool LoadSymbolsNow);
public:
void SetSymbolSettings(Platform::String ^ SymbolPath, Platform::String ^ SymbolPathState, Platform::String ^ SymbolCachePath, bool OnlyLoadSymbolsManually, bool LoadSymbolsNow);
void SetSymbolSettings(std::wstring const & SymbolPath, std::wstring const & SymbolPathState, std::wstring const & SymbolCachePath, bool OnlyLoadSymbolsManually, bool LoadSymbolsNow);
[System.Runtime.InteropServices.DispId(3100)]
public void SetSymbolSettings (string SymbolPath, string SymbolPathState, string SymbolCachePath, bool OnlyLoadSymbolsManually, bool LoadSymbolsNow);
[<System.Runtime.InteropServices.DispId(3100)>]
abstract member SetSymbolSettings : string * string * string * bool * bool -> unit
Public Sub SetSymbolSettings (SymbolPath As String, SymbolPathState As String, SymbolCachePath As String, OnlyLoadSymbolsManually As Boolean, LoadSymbolsNow As Boolean)
Parameters
- SymbolPath
- String
The path to the location of the .PDB symbol files.
- SymbolPathState
- String
A string that contains one character for each symbol path. If the symbol path is enabled, the character has a value of "1". If the symbol path not enabled, the character can have any other value.
- SymbolCachePath
- String
The path to the location of the cache used for downloading symbols from a symbol server.
- OnlyLoadSymbolsManually
- Boolean
Set to true
if symbols should only be loaded manually, false
if symbols should be loaded automatically.
- LoadSymbolsNow
- Boolean
Set to true
if symbols should be loaded immediately; otherwise false
.
- Attributes