Table of Contents

Class ClusterNode

Namespace
Dynamicweb.LoadBalancing.Data
Assembly
Dynamicweb.Core.dll

Contains information about a node that is part of a Dynamicweb Cluster / Network Load Balancing setup.

public class ClusterNode
Inheritance
ClusterNode
Inherited Members

Constructors

ClusterNode(string, string, string, string)

public ClusterNode(string name, string machineName, string ip, string hostName)

Parameters

name string
machineName string
ip string
hostName string

Properties

CreationDate

Timestamp indicating when this node was added to the database.

public DateTime CreationDate { get; }

Property Value

DateTime

HostName

HostName of this node

public string HostName { get; set; }

Property Value

string

IP

IP address of this node.

public string IP { get; set; }

Property Value

string

Id

Id used in the database.

public int Id { get; }

Property Value

int

IsEnabled

Describes if this node is enabled or disabled.

public bool IsEnabled { get; set; }

Property Value

bool

MachineName

Name of the machine this node resides on.

public string MachineName { get; set; }

Property Value

string

Name

Name of node.

public string Name { get; set; }

Property Value

string

UpdateDate

Last update date for data of this node.

public DateTime UpdateDate { get; }

Property Value

DateTime
To top