Table of Contents

Interface IBranchMappingTable

Namespace
PushTechnology.ClientInterface.Client.Features.SessionTrees
Assembly
Diffusion.Client.dll

A session tree branch mapping table.

public interface IBranchMappingTable

Remarks

A branch mapping table is a list of IBranchMapping branch mappings assigned to a session tree branch.

To create a branch mapping table, obtain a new a builder instance using NewBranchMappingTableBuilder(), call AddBranchMapping(string, string) for each branch mapping, then Create(string). The result can then be sent to the server using PutBranchMappingTableAsync(IBranchMappingTable).

Since 6.7

Properties

BranchMappings

Gets the branch mappings.

IReadOnlyCollection<IBranchMapping> BranchMappings { get; }

Property Value

IReadOnlyCollection<IBranchMapping>

Branch mappings.

SessionTreeBranch

Gets the branch of the session tree to which this table is bound.

string SessionTreeBranch { get; set; }

Property Value

string

Branch of the session tree to which this table is bound.