Interface IServer
Interface IServer. Describes a single server as an ILocation.
Namespace: VpnSDK.Public.Interfaces
Assembly: VpnSDK.dll
Syntax
public interface IServer : ILocation
Properties
City
Gets the city of the location to connect to. This field may be empty on some location objects.
Declaration
string City { get; }
Property Value
Type | Description |
---|---|
String |
Country
Gets the country of the location to connect to.
Declaration
string Country { get; }
Property Value
Type | Description |
---|---|
String |
Hostname
Gets servers hostname.
Declaration
string Hostname { get; }
Property Value
Type | Description |
---|---|
String |
Ip
Gets servers IP address.
Declaration
IPAddress Ip { get; }
Property Value
Type | Description |
---|---|
IPAddress |
Load
Gets the user load of the region. Higher values mean that the server is nearing capacity.
Declaration
ushort? Load { get; }
Property Value
Type | Description |
---|---|
Nullable<UInt16> | The current user load between 0% to 100% as a flattened value. |