// dnlib: See LICENSE.txt for more info
namespace dnlib.DotNet.Pdb.Symbols {
///
/// Async step info
///
public struct SymbolAsyncStepInfo {
///
/// Yield offset
///
public uint YieldOffset;
///
/// Breakpoint offset
///
public uint BreakpointOffset;
///
/// Breakpoint method token
///
public uint BreakpointMethod;
///
/// Constructor
///
/// Yield offset
/// Breakpoint offset
/// Breakpoint method token
public SymbolAsyncStepInfo(uint yieldOffset, uint breakpointOffset, uint breakpointMethod) {
YieldOffset = yieldOffset;
BreakpointOffset = breakpointOffset;
BreakpointMethod = breakpointMethod;
}
}
}