Interface ITopicRemovalResult

Reports the number of topics removed by a call to RemoveTopicsAsync(String).

Since 6.6.

Namespace: PushTechnology.ClientInterface.Client.Features.Control.Topics
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicRemovalResult

Properties

RemovedCount

The integer returned represents the number of topics removed by the operation. This does not include any derived topics created by a topic view which were removed as a side effect of this action.

Returns the count of topics removed.

Declaration
int RemovedCount { get; }
Property Value
Type Description
System.Int32

The number of topics removed.

Back to top