public void Stop()
        {
            if (client == null)
            {
                return;
            }

            client.Stop();
            client = null;

            RaiseEnabledPropertiesChanged();
        }