Class BindingSubtree
Represents the binding tree node.
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 BindingSubtree : Subtree, IEquatable<Subtree>Constructors
BindingSubtree()
Initializes an empty instance.
Declaration
public BindingSubtree()BindingSubtree(Binding)
Initializes new instance from provided Binding.
Declaration
public BindingSubtree(Binding binding)Parameters
| Type | Name | Description | 
|---|---|---|
| Binding | binding | Behavior to be initialized from. | 
BindingSubtree(Int32, String, Guid)
Initializes new instance with provided id, name, and kind.
Declaration
public BindingSubtree(int id, string name, Guid key)Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | id | Binding's database identifier. | 
| System.String | name | Bindings's friendly name. | 
| System.Guid | key | Behavior's unique key. | 
Properties
Capabilities
Gets or sets the binding capabilities.
Declaration
public string Capabilities { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | 
Implements
      System.IEquatable<T>