// Token: 0x0600406B RID: 16491 RVA: 0x000F029E File Offset: 0x000EE49E
 internal override Delegate[] GetDelegateContinuationsForDebugger()
 {
     return(new Delegate[]
     {
         AsyncMethodBuilderCore.TryGetStateMachineForDebugger(this.m_action)
     });
 }
Ejemplo n.º 2
0
        internal override Delegate[] GetDelegateContinuationsForDebugger()
        {
            Contract.Assert(m_action != null);
#if !FEATURE_CORECLR || FEATURE_NETCORE
            return(new Delegate[] { AsyncMethodBuilderCore.TryGetStateMachineForDebugger(m_action) });
#else
            return(new Delegate[] { m_action });
#endif
        }
Ejemplo n.º 3
0
        public static void Rooter()
        {
            Task t = null;

            t.GetDelegateContinuationsForDebugger();
            TaskContinuation tc = null;

            tc.GetDelegateContinuationsForDebugger();
            AsyncMethodBuilderCore.TryGetStateMachineForDebugger(null);
            Task.GetActiveTaskFromId(0);
            return;
        }
Ejemplo n.º 4
0
 internal override Delegate[] GetDelegateContinuationsForDebugger()
 {
     Debug.Assert(m_action != null);
     return(new Delegate[] { AsyncMethodBuilderCore.TryGetStateMachineForDebugger(m_action) });
 }