using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics.SymbolStore
{
/// Represents a symbol binder for managed code.
// Token: 0x0200014C RID: 332
[ComVisible(true)]
public interface ISymbolBinder1
{
/// Gets the interface of the symbol reader for the current file.
/// The interface that reads the debugging symbols.
/// An that refers to the metadata import interface.
/// The name of the file for which the reader interface is required.
/// The search path used to locate the symbol file.
// Token: 0x060010D6 RID: 4310
ISymbolReader GetReader(IntPtr importer, string filename, string searchPath);
}
}