System.Diagnostics.SymbolStore.ISymbolBinder Interface

Assembly: Mscorlib.dll
Namespace: System.Diagnostics.SymbolStore
Summary
Represents a symbol binder for managed code.
C# Syntax:
public interface ISymbolBinder
See also:
System.Diagnostics.SymbolStore Namespace

System.Diagnostics.SymbolStore.ISymbolBinder Member List:

Public Methods
GetReader Gets the interface of the symbol reader for the current file.

System.Diagnostics.SymbolStore.ISymbolBinder Member Details

Method: GetReader(
   int importer,
   string filename,
   string searchPath
)
Summary
Gets the interface of the symbol reader for the current file.
C# Syntax:
ISymbolReader GetReader(
   int importer,
   string filename,
   string searchPath
);
Parameters:

importer

The metadata import interface. The metadata import interface.

filename

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

searchPath

The search path used to locate the symbol file. The search path used to locate the symbol file.

Return Value:
The ISymbolReader interface that reads the debugging symbols.
Remarks
When given a metadata interface, a file name, and a search path, the ISymbolBinder.GetReader method returns the ISymbolReader interface that reads the debugging symbols associated with the module.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.