IVsDebugger2::GetSymbolPath Method (String^, String^)
Visual Studio 2015
Gets the current symbol path and cache settings.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int GetSymbolPath(
[OutAttribute] String^% pbstrSymbolPath,
[OutAttribute] String^% pbstrSymbolCachePath
)
Parameters
- pbstrSymbolPath
-
Type:
System::String^
[out] The current symbol path.
- pbstrSymbolCachePath
-
Type:
System::String^
[out] The current symbol cache path.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
The symbol path, pbstrSymbolPath or pbstrSymbolCachePath, is a list of symbol-server locations, separated by semicolons. Optionally, it can begin with one or more cache locations followed by a semicolon.
The symbol path can also contain one or more cache locations. Caches are listed in priority order, with the highest priority cache first, and separated by * symbols. For example:
\\symbols\symbols;\\someotherserver\symbols;c:\symbols\httpsymbols*http://msdl.microsoft.com
From vsshell80.idl:
HRESULT GetSymbolPath(
[out] BSTR *pbstrSymbolPath,
[out] BSTR *pbstrSymbolCachePath
);
Show: