System.Runtime.ScheduleActionItemAsyncResult
namespace System.Runtime
{
internal abstract class ScheduleActionItemAsyncResult : AsyncResult
{
protected ScheduleActionItemAsyncResult(AsyncCallback callback, object state);
protected void Schedule();
protected abstract void OnDoWork();
public static void End(IAsyncResult result);
}
}