Class EndpointGroupSubtree
Represents an outbound endpoint group tree node with its children.
Implements
System.IEquatable<Subtree>
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Nevatech.Vsb.Repository.Services
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class EndpointGroupSubtree : Subtree, IEquatable<Subtree>
Constructors
EndpointGroupSubtree()
Instantiates new object.
Declaration
public EndpointGroupSubtree()
EndpointGroupSubtree(EndpointGroup)
Initializes new instance from provided outbound endpoint group.
Declaration
public EndpointGroupSubtree(EndpointGroup endpointGroup)
Parameters
Type | Name | Description |
---|---|---|
EndpointGroup | endpointGroup | Outbound endpoint group to be initialized from. |
EndpointGroupSubtree(Int32, String, Guid)
Initializes new instance with provided identifier and display name.
Declaration
public EndpointGroupSubtree(int id, string name, Guid key)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | id | Outbound endpoint group identifier. |
System.String | name | Outbound endpoint group display name. |
System.Guid | key | Behavior's unique key. |
Properties
Endpoints
Gets collection of the outbound endpoints in this group.
Declaration
public Collection<EndpointSubtree> Endpoints { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<EndpointSubtree> |
Implements
System.IEquatable<T>