ServiceBrokerClient.ClientProxiesInvalidatedEventHandler Delegate
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.
The delegate for a handler of the Invalidated event.
public: delegate System::Threading::Tasks::Task ^ ServiceBrokerClient::ClientProxiesInvalidatedEventHandler(ServiceBrokerClient ^ sender, BrokeredServicesChangedEventArgs ^ args, CancellationToken cancellationToken);
public delegate System.Threading.Tasks.Task ServiceBrokerClient.ClientProxiesInvalidatedEventHandler(ServiceBrokerClient sender, BrokeredServicesChangedEventArgs args, CancellationToken cancellationToken);
type ServiceBrokerClient.ClientProxiesInvalidatedEventHandler = delegate of ServiceBrokerClient * BrokeredServicesChangedEventArgs * CancellationToken -> Task
Public Delegate Function ServiceBrokerClient.ClientProxiesInvalidatedEventHandler(sender As ServiceBrokerClient, args As BrokeredServicesChangedEventArgs, cancellationToken As CancellationToken) As Task
Parameters
- sender
- ServiceBrokerClient
The ServiceBrokerClient instance that is raising the event.
Details regarding which services actually changed that led to this event being raised.
- cancellationToken
- CancellationToken
A token that is canceled when the new set of services begun with this event is itself invalidated.
Return Value
A task whose completion will allow a subsequent invocation of this event handler.