Files
Dec2017-Script-Dump/mscorlib/System/Diagnostics/SymbolStore/ISymbolBinder.cs
T
2026-06-04 11:42:34 +02:00

21 lines
938 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics.SymbolStore
{
/// <summary>Represents a symbol binder for managed code.</summary>
// Token: 0x0200014B RID: 331
[ComVisible(true)]
public interface ISymbolBinder
{
/// <summary>Gets the interface of the symbol reader for the current file.</summary>
/// <returns>The <see cref="T:System.Diagnostics.SymbolStore.ISymbolReader" /> interface that reads the debugging symbols.</returns>
/// <param name="importer">The metadata import interface. </param>
/// <param name="filename">The name of the file for which the reader interface is required. </param>
/// <param name="searchPath">The search path used to locate the symbol file. </param>
// Token: 0x060010D5 RID: 4309
[Obsolete("This interface is not 64-bit clean. Use ISymbolBinder1 instead", false)]
ISymbolReader GetReader(int importer, string filename, string searchPath);
}
}