ListJumpServices
Name
ListJumpServices - Retrieves a list of all available Jump services.
Synopsis
Namespace: LoadBalancer.Client.Auth
public Task<ListJumpServicesResult> ListJumpServices(ListJumpServicesParameters parameters)
Parameters
ListJumpServicesParameters consists of the following:
EndpointsEndpoint[]- An array containing Jump services. Each endpoint returned in the response is comprised of the protocol, address, port, and application name.
Return Value
The ListJumpServicesResult containing:
ServiceEndpointEndpoint- Represents the endpoint having the lowest latency selected from the array of endpoints. This endpoint is retrieved when theListJumpServicesmethod is invoked.
Remarks
The Endpoint consists of the following parameters:
Protocolstring- The protocol used for communication. Can be either WSS(Web-Socket Secure) or WS(Web-Socket).Addressstring- The address can be either the domain or the IP address.Portint- Port number used for communication.AppNamestring- The unique name of the application to connect to.