public async void StopAzureSession() { Debug.Log("\nAnchorModuleScript.StopAzureSession()"); // Notify AnchorFeedbackScript OnEndASASession?.Invoke(); Debug.Log("Stopping Azure session... please wait..."); // Stops any existing session cloudManager.StopSession(); // Resets the current session if there is one, and waits for any active queries to be stopped await cloudManager.ResetSessionAsync(); Debug.Log("Azure session stopped successfully"); }