<PackageReference Include="NETStandard.Library" Version="2.0.1" />

System.Diagnostics.SymbolStore.ISymbolReader

public interface ISymbolReader
namespace System.Diagnostics.SymbolStore { public interface ISymbolReader { SymbolToken UserEntryPoint { get; } ISymbolDocument GetDocument(string url, Guid language, Guid languageVendor, Guid documentType); ISymbolDocument[] GetDocuments(); ISymbolVariable[] GetGlobalVariables(); ISymbolMethod GetMethod(SymbolToken method); ISymbolMethod GetMethod(SymbolToken method, int version); ISymbolMethod GetMethodFromDocumentPosition(ISymbolDocument document, int line, int column); ISymbolNamespace[] GetNamespaces(); byte[] GetSymAttribute(SymbolToken parent, string name); ISymbolVariable[] GetVariables(SymbolToken parent); } }