Class NodeSubtree
Represents a node 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 NodeSubtree : Subtree, IEquatable<Subtree>
Constructors
NodeSubtree()
Instantiates a new object.
Declaration
public NodeSubtree()
NodeSubtree(Node)
Initializes new instance from provided node.
Declaration
public NodeSubtree(Node node)
Parameters
Type | Name | Description |
---|---|---|
Node | node | Node to be initialized from. |
NodeSubtree(Int32, String, Guid)
Initializes new instance with provided identifier and display name.
Declaration
public NodeSubtree(int id, string name, Guid key)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | id | Node identifier. |
System.String | name | Node display name. |
System.Guid | key | Behavior's unique key. |
Properties
BaseAddresses
Gets collection of node base addresses.
Declaration
public Collection<Subtree> BaseAddresses { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<Subtree> |
Identities
Gets collection of node identities.
Declaration
public Collection<IdentitySubtree> Identities { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.Collection<IdentitySubtree> |
NodeType
Gets or sets this node's type.
Declaration
public NodeType NodeType { get; set; }
Property Value
Type | Description |
---|---|
NodeType |
Implements
System.IEquatable<T>