Interface ITopicView

Representation of a topic view.

Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface ITopicView

Properties

Name

Gets the name of the view.

Declaration
string Name { get; }
Property Value
Type Description
System.String

The view name.

Roles

Gets the security roles used when creating the view.

Declaration
IReadOnlyCollection<string> Roles { get; }
Property Value
Type Description
IReadOnlyCollection<System.String>

The security roles.

Specification

Gets the view specification.

Declaration
string Specification { get; }
Property Value
Type Description
System.String

The view specification.

Back to top