C# 클래스 AccidentalFish.ApplicationSupport.Core.Threading.AsyncPump

Provides a pump that supports running asynchronous methods on the current thread as outlined in the MSDN article here https://blogs.msdn.microsoft.com/pfxteam/2012/01/20/await-synchronizationcontext-and-console-apps/ (source from that article)
파일 보기 프로젝트 열기: JamesRandall/AccidentalFish.ApplicationSupport

공개 메소드들

메소드 설명
Run ( Func func ) : void

Runs the specified asynchronous function.

메소드 상세

Run() 공개 정적인 메소드

Runs the specified asynchronous function.
public static Run ( Func func ) : void
func Func The asynchronous function to execute.
리턴 void