using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics.SymbolStore
{
/// Represents a symbol binder for managed code.
// Token: 0x0200014B RID: 331
[ComVisible(true)]
public interface ISymbolBinder
{
/// Gets the interface of the symbol reader for the current file.
/// The interface that reads the debugging symbols.
/// 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: 0x060010D5 RID: 4309
[Obsolete("This interface is not 64-bit clean. Use ISymbolBinder1 instead", false)]
ISymbolReader GetReader(int importer, string filename, string searchPath);
}
}