Constructs an instance of UFCancellationTokenSource
Rest
...anOtherTokens: IUFCancellationToken[]Tokens to include when checking if the token is cancelled.
Checks if a call was made to cancel or if one of the other tokens supplied with the constructor is requesting cancellation.
Gets a reference to the token, which can be used to check if a cancellation has been requested through cancel.
Static
NONEA token that will never be cancelled (readonly constant).
UFCancellationTokenSource can be used to get a IUFCancellationToken. The token can be activated by calling the cancel method.
It is possible to link tokens together by supplying other IUFCancellationToken instances with the constructor.
The naming is based on the .net (c#) implementation.