public void OnAuthenticationFailed(uint serverId, VmwHorizonClientAuthType authType, string errorMessage, int retryAllowed) { Debug.WriteLine("OnAuthenticationFailed(): {0} - {1} - {2} - {3}", serverId, Serialise(authType.ToString()), errorMessage, retryAllowed); hasFailed = true; }
public void OnAuthenticating(uint serverId, VmwHorizonClientAuthType authType, string user) { Debug.WriteLine("OnAuthenticating(): {0} - {1} - {2}", serverId, Serialise(authType.ToString()), user); }
public void OnAuthenticationDeclined(uint serverId, VmwHorizonClientAuthType authType) { Debug.WriteLine("OnAuthenticationDeclined(): {0} - {1}", serverId, Serialise(authType.ToString())); hasFailed = true; }
public void OnAuthenticationRequested(uint serverId, VmwHorizonClientAuthType authType) { Debug.WriteLine("OnAuthenticationRequested(): {0} - {1}", serverId, Serialise(authType.ToString())); }