ISymbolBinder1.GetReader(IntPtr, String, String) Method

Definition

Gets the interface of the symbol reader for the current file.

public:
 System::Diagnostics::SymbolStore::ISymbolReader ^ GetReader(IntPtr importer, System::String ^ filename, System::String ^ searchPath);
public System.Diagnostics.SymbolStore.ISymbolReader? GetReader (IntPtr importer, string filename, string searchPath);
public System.Diagnostics.SymbolStore.ISymbolReader GetReader (IntPtr importer, string filename, string searchPath);
abstract member GetReader : nativeint * string * string -> System.Diagnostics.SymbolStore.ISymbolReader
Public Function GetReader (importer As IntPtr, filename As String, searchPath As String) As ISymbolReader

Parameters

importer
IntPtr

nativeint

An IntPtr that refers to the metadata import interface.

filename
String

The name of the file for which the reader interface is required.

searchPath
String

The search path used to locate the symbol file.

Returns

The ISymbolReader interface that reads the debugging symbols.

Remarks

When given a pointer to a metadata interface, a file name, and a search path, the GetReader method returns the ISymbolReader interface that reads the debugging symbols associated with the module.

Applies to