Table of Contents

Class Command

Namespace
Dynamicweb.LoadBalancing
Assembly
Dynamicweb.Core.dll

Describes which service that needs to be invalidated, by using a specified value.

public class Command
Inheritance
Command
Derived
Inherited Members

Properties

CommandValue

Value passed along to the service on servantside.

public string CommandValue { get; set; }

Property Value

string

Name

Name of the service handling this command.

public string Name { get; set; }

Property Value

string

Methods

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

ToString()

{Name}:{CommandValue}

public override string ToString()

Returns

string
To top