LogicalThreadOperation Methods

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
ExecuteAction Executes an action once on the current thread.
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
RequeueAction If the operation is running, the action has yet to be executed, and the given priority level differs from the queued action's priority level, this method will requeue the action at the given priority level.
RunIfPending Starts the operation over at the beginning if the operation is pending or sets the operation state back to not running so it can run again.
RunOnce Executes the action on the current thread or marks the operation as pending if the operation is already running.
RunOnceAsync Executes the action on another thread or marks the operation as pending if the operation is already running.
ToStringReturns a string that represents the current object.
(Inherited from Object)
TryRunOnce Attempts to execute the action on the current thread. Does nothing if the operation is already running.
TryRunOnceAsync Attempts to execute the action on another thread. Does nothing if the operation is already running.

See Also