C# 클래스 Flatwhite.WebApi.RegisteredTasks

상속: IRegisteredObject, IBackgroundTaskManager
파일 보기 프로젝트 열기: vanthoainguyen/Flatwhite

공개 메소드들

메소드 설명
RegisteredTasks ( ) : System

Creates an instance that is registered with the ASP.NET runtime.

Run ( Func operation ) : void

Executes an asynchronous background operation, registering it with ASP.NET.

비공개 메소드들

메소드 설명
IRegisteredObject ( bool immediate ) : void
Register ( Task task ) : void

Registers a task with the ASP.NET runtime. The task is unregistered when it completes.

메소드 상세

RegisteredTasks() 공개 메소드

Creates an instance that is registered with the ASP.NET runtime.
public RegisteredTasks ( ) : System
리턴 System

Run() 공개 메소드

Executes an asynchronous background operation, registering it with ASP.NET.
public Run ( Func operation ) : void
operation Func The background operation.
리턴 void