Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void Check(Action)

Declaration

public void Check(
    Action action
)

Summary

Checks whether it is time to execute the action. If so, executes it on the calling thread and returns only when the action is complete. If not, returns very quickly without blocking. If another thread is currently executing the action, returns very quickly without blocking.

Parameters

ActionactionThe action to execute.