SpicyPixel.Threading.Tasks.YieldableTask.InternalAction C# (CSharp) 메소드

InternalAction() 개인적인 메소드

private InternalAction ( ) : void
리턴 void
        private void InternalAction()
        {
            if(!(TaskScheduler.Current is FiberTaskScheduler))
                throw new InvalidOperationException("A YieldableTask can only be queued to a FiberTaskScheduler.");

            if(fiberException != null)
                throw fiberException;
        }