SymBinder.GetReader Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene la interfaz del lector de símbolos del archivo actual.
Sobrecargas
GetReader(Int32, String, String) |
Obsoletos.
Obtiene la interfaz del lector de símbolos para el archivo actual, usando el puntero de entero de 32 bits a una interfaz de metadatos, el nombre de archivo y la ruta de búsqueda que se hayan especificado. |
GetReader(IntPtr, String, String) |
Obtiene la interfaz del lector de símbolos para el archivo actual, usando el puntero a una interfaz de metadatos, el nombre de archivo y la ruta de búsqueda que se hayan especificado. |
GetReader(Int32, String, String)
Precaució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
Obtiene la interfaz del lector de símbolos para el archivo actual, usando el puntero de entero de 32 bits a una interfaz de metadatos, el nombre de archivo y la ruta de búsqueda que se hayan especificado.
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
Parámetros
- importer
- Int32
Entero de 32 bits que señala a la interfaz de importación de metadatos.
- filename
- String
Nombre del archivo para el que se necesita la interfaz del lector.
- searchPath
- String
Ruta de búsqueda usada para localizar el archivo de símbolos.
Devoluciones
Interfaz que lee los símbolos de depuración.
Implementaciones
- Atributos
Comentarios
Cuando se asigna un puntero a una interfaz de metadatos, un nombre de archivo y una ruta de acceso de búsqueda, el GetReader método devuelve la ISymbolReader interfaz que lee los símbolos de depuración asociados al módulo.
Nota
No se recomienda usar un entero de 32 bits como puntero. Use la GetReader sobrecarga en su lugar.
Se aplica a
GetReader(IntPtr, String, String)
Obtiene la interfaz del lector de símbolos para el archivo actual, usando el puntero a una interfaz de metadatos, el nombre de archivo y la ruta de búsqueda que se hayan especificado.
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
Parámetros
- importer
-
IntPtr
nativeint
Estructura que señala a la interfaz de importación de metadatos.
- filename
- String
Nombre del archivo para el que se necesita la interfaz del lector.
- searchPath
- String
Ruta de búsqueda usada para localizar el archivo de símbolos.
Devoluciones
Interfaz que lee los símbolos de depuración.
Implementaciones
Comentarios
Cuando se asigna un puntero a una interfaz de metadatos, un nombre de archivo y una ruta de acceso de búsqueda, el GetReader método devuelve la ISymbolReader interfaz que lee los símbolos de depuración asociados al módulo.