StatelessService.OnCloseAsync(CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This method is called as the final step of closing the service. Override this method to be notified that Close has completed for this instance's internal components.
For information about Reliable Services life cycle please see https://docs.microsoft.com/azure/service-fabric/service-fabric-reliable-services-lifecycle
protected virtual System.Threading.Tasks.Task OnCloseAsync (System.Threading.CancellationToken cancellationToken);
abstract member OnCloseAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.OnCloseAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
Protected Overridable Function OnCloseAsync (cancellationToken As CancellationToken) As Task
Parameters
- cancellationToken
- CancellationToken
Cancellation token provided to monitor for cancellation requests.
Returns
A Task that represents outstanding operation.
Applies to
Azure SDK for .NET