FabricClient.ServiceManagementClient.UnregisterServiceNotificationFilterAsync Method

Definition

Overloads

UnregisterServiceNotificationFilterAsync(Int64)

Unregisters a previously registered ServiceNotificationFilterDescription.

UnregisterServiceNotificationFilterAsync(Int64, TimeSpan, CancellationToken)

Unregisters a previously registered ServiceNotificationFilterDescription.

UnregisterServiceNotificationFilterAsync(Int64)

Unregisters a previously registered ServiceNotificationFilterDescription.

public System.Threading.Tasks.Task UnregisterServiceNotificationFilterAsync (long filterId);
member this.UnregisterServiceNotificationFilterAsync : int64 -> System.Threading.Tasks.Task
Public Function UnregisterServiceNotificationFilterAsync (filterId As Long) As Task

Parameters

Returns

A Task representing the async operation.

Remarks

It's not necessary to unregister individual filters if the client itself will no longer be used since all ServiceNotificationFilterDescription objects registered by the FabricClient will be automatically unregistered when client is disposed.

The default timeout is one minute for which the system will allow this operation to continue before returning TimeoutException.

Applies to

UnregisterServiceNotificationFilterAsync(Int64, TimeSpan, CancellationToken)

Unregisters a previously registered ServiceNotificationFilterDescription.

public System.Threading.Tasks.Task UnregisterServiceNotificationFilterAsync (long filterId, TimeSpan timeout, System.Threading.CancellationToken cancellationToken);
member this.UnregisterServiceNotificationFilterAsync : int64 * TimeSpan * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function UnregisterServiceNotificationFilterAsync (filterId As Long, timeout As TimeSpan, cancellationToken As CancellationToken) As Task

Parameters

timeout
TimeSpan

The maximum time allowed for processing the request before TimeoutException is thrown.

cancellationToken
CancellationToken

Reserved for future use.

Returns

A Task representing the async operation.

Remarks

It's not necessary to unregister individual filters if the client itself will no longer be used since all ServiceNotificationFilterDescription objects registered by the FabricClient will be automatically unregistered when client is disposed.

Applies to