Interface IBranchMapping

A session tree branch mapping.

Namespace: PushTechnology.ClientInterface.Client.Features.SessionTrees
Assembly: Diffusion.Client.dll
Syntax
public interface IBranchMapping
Remarks

Branch mappings belong to IBranchMappingTable branch mapping tables. Each branch mapping is a pair of a ISession session filter and the target topic tree branch that applies to sessions matching the filter.

Since 6.7

Properties

SessionFilter

Gets the session filter.

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

The session filter.

TopicTreeBranch

Gets the topic tree branch in the topic tree for sessions matching the session filter.

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

The topic tree branch in the topic tree.

Back to top