SymBinder.GetReader Metoda

Definice

Získá rozhraní symbol čtečky pro aktuální soubor.

Přetížení

GetReader(Int32, String, String)
Zastaralé.

Získá rozhraní čtečky symbolů aktuálního souboru pomocí zadaného 32bitového celočíselného ukazatele na metadata rozhraní, zadaný název souboru a zadanou cestu hledání.

GetReader(IntPtr, String, String)

Získá rozhraní čtečky symbolů aktuálního souboru pomocí zadaného ukazatele na metadata rozhraní, zadaného názvu souboru a zadané cesty hledání.

GetReader(Int32, String, String)

Upozornění

The recommended alternative is SymBinder.GetReader(IntPtr, String). ISymbolBinder1.GetReader takes the importer interface pointer as an IntPtr instead of an Int32, and thus works on both 32-bit and 64-bit architectures. http://go.microsoft.com/fwlink/?linkid=14202

Získá rozhraní čtečky symbolů aktuálního souboru pomocí zadaného 32bitového celočíselného ukazatele na metadata rozhraní, zadaný název souboru a zadanou cestu hledání.

public:
 override System::Diagnostics::SymbolStore::ISymbolReader ^ GetReader(int importer, System::String ^ filename, System::String ^ searchPath);
public:
 virtual System::Diagnostics::SymbolStore::ISymbolReader ^ GetReader(int importer, System::String ^ filename, System::String ^ searchPath);
public override System.Diagnostics.SymbolStore.ISymbolReader GetReader (int importer, string filename, string searchPath);
[System.Obsolete("The recommended alternative is SymBinder.GetReader(IntPtr, String). ISymbolBinder1.GetReader takes the importer interface pointer as an IntPtr instead of an Int32, and thus works on both 32-bit and 64-bit architectures. http://go.microsoft.com/fwlink/?linkid=14202")]
public override System.Diagnostics.SymbolStore.ISymbolReader GetReader (int importer, string filename, string searchPath);
[System.Obsolete("The recommended alternative is SymBinder.GetReader(IntPtr, String). ISymbolBinder1.GetReader takes the importer interface pointer as an IntPtr instead of an Int32, and thus works on both 32-bit and 64-bit architectures. http://go.microsoft.com/fwlink/?linkid=14202")]
public virtual System.Diagnostics.SymbolStore.ISymbolReader GetReader (int importer, string filename, string searchPath);
abstract member GetReader : int * string * string -> System.Diagnostics.SymbolStore.ISymbolReader
override this.GetReader : int * string * string -> System.Diagnostics.SymbolStore.ISymbolReader
[<System.Obsolete("The recommended alternative is SymBinder.GetReader(IntPtr, String). ISymbolBinder1.GetReader takes the importer interface pointer as an IntPtr instead of an Int32, and thus works on both 32-bit and 64-bit architectures. http://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member GetReader : int * string * string -> System.Diagnostics.SymbolStore.ISymbolReader
override this.GetReader : int * string * string -> System.Diagnostics.SymbolStore.ISymbolReader
Public Overrides Function GetReader (importer As Integer, filename As String, searchPath As String) As ISymbolReader
Public Overridable Function GetReader (importer As Integer, filename As String, searchPath As String) As ISymbolReader

Parametry

importer
Int32

32bitové celé číslo, které odkazuje na rozhraní importu metadat.

filename
String

Název souboru, pro který se vyžaduje rozhraní čtečky.

searchPath
String

Cesta hledání použitá k vyhledání souboru symbolu.

Návraty

Rozhraní, které čte symboly ladění.

Implementuje

Atributy

Poznámky

Při zadání ukazatele na rozhraní metadat, název souboru a cestu hledání vrátí ISymbolReader metoda rozhraní, GetReader které čte symboly ladění přidružené k modulu.

Poznámka

Použití 32bitového čísla jako ukazatele se nedoporučuje. Místo toho GetReader použijte přetížení.

Platí pro

GetReader(IntPtr, String, String)

Získá rozhraní čtečky symbolů aktuálního souboru pomocí zadaného ukazatele na metadata rozhraní, zadaného názvu souboru a zadané cesty hledání.

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

Parametry

importer
IntPtr

nativeint

Struktura, která odkazuje na rozhraní pro import metadat.

filename
String

Název souboru, pro který se vyžaduje rozhraní čtečky.

searchPath
String

Cesta hledání použitá k vyhledání souboru symbolu.

Návraty

Rozhraní, které čte symboly ladění.

Implementuje

Poznámky

Při zadání ukazatele na rozhraní metadat, název souboru a cestu hledání vrátí ISymbolReader metoda rozhraní, GetReader které čte symboly ladění přidružené k modulu.

Platí pro