CancellationTokenSource.Dispose
Method
Definition
Overloads
| Dispose() |
Releases all resources used by the current instance of the CancellationTokenSource class. |
| Dispose(Boolean) |
Releases the unmanaged resources used by the CancellationTokenSource class and optionally releases the managed resources. |
Dispose()
Releases all resources used by the current instance of the CancellationTokenSource class.
public void Dispose ();
Remarks
Call Dispose when you are finished using the CancellationTokenSource. The Dispose method leaves the CancellationTokenSource in an unusable state. After calling Dispose, you must release all references to the CancellationTokenSource so the garbage collector can reclaim the memory that the CancellationTokenSource was occupying.
For more information, see Cleaning Up Unmanaged Resources and Implementing a Dispose Method.
Note
Always call Dispose before you release your last reference to the CancellationTokenSource. Otherwise, the resources it is using will not be freed until the garbage collector calls the CancellationTokenSource object's Finalize method.
Dispose(Boolean)
Releases the unmanaged resources used by the CancellationTokenSource class and optionally releases the managed resources.
protected virtual void Dispose (bool disposing);
- disposing
- Boolean
true to release both managed and unmanaged resources; false to release only unmanaged resources.