hi @TomF ,I am using C# .NET and used SessionEventargs.info to get the host connected to before calling the session.connect…So would it be correct to know which host i am connected to?
private void HandleSessionEvent(object sender, SessionEventArgs e)
{
try
{
// msg = String.Format("Session Event Received: '{0}' Type: '{1}' Text: '{2}' CorrelationTag: '{3}'", e.Event, e.ResponseCode.ToString(), e.Info, e.CorrelationKey)
// MessageBox.Show(msg)
//Added by Bhumika J on 27-Apr-2020||To capture host connected to in case of failover||START
string msg;
** msg = e.Info;**
oLogger.LogInformationMessage("Successfully Connected to :" + msg);
//Added by Bhumika J on 27-Apr-2020||To capture host connected to in case of failover||END
}
}