Search Results for

    Show / Hide Table of Contents

    Class ServiceSubtree

    Represents a physical or virtual service tree node with its children.

    Inheritance
    object
    Subtree
    ServiceSubtree
    Implements
    IEquatable<Subtree>
    Inherited Members
    Subtree.Equals(Subtree)
    Subtree.Equals(object)
    Subtree.GetHashCode()
    Subtree.ToString()
    Subtree.Id
    Subtree.Key
    Subtree.Name
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetType()
    object.MemberwiseClone()
    Namespace: Nevatech.Vsb.Repository.Services
    Assembly: Nevatech.Vsb.Repository.dll
    Syntax
    [DataContract(Namespace = "http://schemas.nevatech.com/sentinet/2011/02")]
    public class ServiceSubtree : Subtree, IEquatable<Subtree>

    Constructors

    ServiceSubtree()

    Instantiates new object.

    Declaration
    public ServiceSubtree()

    ServiceSubtree(Service)

    Initializes new instance from provided service.

    Declaration
    public ServiceSubtree(Service service)
    Parameters
    Type Name Description
    Service service

    Service to be initialized from.

    ServiceSubtree(int, string, Guid, bool, ServiceKind)

    Instantiates new object and initializes it with provided identifier, display name, and flag indicating the service kind (physical or virtual).

    Declaration
    public ServiceSubtree(int id, string name, Guid key, bool isVirtual, ServiceKind kind)
    Parameters
    Type Name Description
    int id

    Node identifier.

    string name

    Node display name.

    Guid key

    Behavior's unique key.

    bool isVirtual

    If True, the node represents virtual service. Otherwise, physical service.

    ServiceKind kind

    Service kind: SOAP, REST, or OData.

    Properties

    IsVirtual

    Gets or sets flag indicating that node represents virtual service.

    Declaration
    [DataMember]
    public bool IsVirtual { get; set; }
    Property Value
    Type Description
    bool

    Kind

    Gets or sets the service kind: SOAP, REST, or OData.

    Declaration
    [DataMember]
    public ServiceKind Kind { get; set; }
    Property Value
    Type Description
    ServiceKind

    ServiceVersions

    Gets collection of service versions.

    Declaration
    [DataMember(EmitDefaultValue = false)]
    public Collection<ServiceVersionSubtree> ServiceVersions { get; }
    Property Value
    Type Description
    Collection<ServiceVersionSubtree>

    Implements

    IEquatable<T>
    In This Article
    Back to top Nevatech Sentinet 6.7 Online Documentation