private static string FormatState(ConnectionStates state)
        {
            switch (state)
            {
            case _reConnecting:
                return(LocalizedStrings.Reconnecting);

            case _none:
                return(LocalizedStrings.Str1658);

            default:
                return(state.GetDisplayName());
            }
        }