Skip to main content
Version: 1.9.0

ResponseStatus

The status of the response to a VL request. Represents the value of the Status field when the OnVLPoseResponded event of VLSDKManager is invoked.

public enum ResponseStatus
{
// Successfully received a Pose as a result of the VL request.
Success = 0,

// The Invoke URL is invalid.
ServerNotFound,
// The Secret Key is invalid.
Unauthorized,
// Unable to connect to the network.
NetworkConnectionError,

// Failed to receive a Pose.
Failed,
// The received Pose has low accuracy.
Inaccurate,
// A valid response was received, but the previous request expired due to a reset or similar reason.
Expired,
// The VL Pose has a significant rotational error relative to the current Pose.
RotationError,
// The VL Pose has a significant positional error relative to the current Pose.
TranslationError,

// When using GPS Guide, the current location is outside the GPS Guide area.
OutOfServiceArea,
// The server received a request it cannot process. Contact the administrator.
BadRequestServer,
// The client sent a request it cannot process. Contact the administrator.
BadRequestClient,

// An internal server error occurred. Contact the administrator.
InternalServerError,

// An unresolvable error occurred. Contact the administrator.
UnknownError
}