// dnlib: See LICENSE.txt for more info
using System.Collections.Generic;
using dnlib.DotNet.Emit;
namespace dnlib.DotNet.Pdb.Symbols {
///
/// A method
///
public abstract class SymbolMethod {
///
/// Gets the method token
///
public abstract int Token { get; }
///
/// Gets the root scope
///
public abstract SymbolScope RootScope { get; }
///
/// Gets all sequence points
///
public abstract IList SequencePoints { get; }
///
/// Reads custom debug info
///
/// Method
/// Method body
/// Updated with custom debug info
public abstract void GetCustomDebugInfos(MethodDef method, CilBody body, IList result);
}
}