Class EndpointSubtree
Represents an endpoint 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 EndpointSubtree : Subtree, IEquatable<Subtree>
Constructors
EndpointSubtree()
Instantiates new object.
Declaration
public EndpointSubtree()
EndpointSubtree(Endpoint)
Initializes new instance from provided endpoint.
Declaration
public EndpointSubtree(Endpoint endpoint)
Parameters
Type | Name | Description |
---|---|---|
Endpoint | endpoint | Endpoint to be initialized from. |
EndpointSubtree(Int32, String, Guid, Uri)
Initializes new instance with provided identifier and display name.
Declaration
public EndpointSubtree(int id, string name, Guid key, Uri physicalAddress)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | id | Endpoint identifier. |
System.String | name | Endpoint display name. |
System.Guid | key | Behavior's unique key. |
System.Uri | physicalAddress | Endpoint physical address (listening URI or client via). |
Properties
Identities
Gets collection of endpoint identities.
Declaration
public Collection<IdentitySubtree> Identities { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<IdentitySubtree> |
PhysicalAddress
Gets or sets endpoint physical address (listening uri or client via).
Declaration
public Uri PhysicalAddress { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Implements
System.IEquatable<T>