/// <summary>
    /// Uses Azure.Connect from prime[31] to and passes in endPoint & AppKey to connect to AMS
    /// </summary>
    private void ConnectToAzureMobileServiceBtn()
    {
        if (!GUILayout.Button("CONNECT TO AZURE SERVICE"))
        {
            return;
        }

        Azure.connect(_azureEndPoint, _applicationKey);
        Debug.Log("...Connecting to Azure Mobile Service. Endpoint:" + " " + _azureEndPoint + " " + "_appKey:" + "" + _applicationKey);
    }