ChatterBox.Client.Presentation.Shared.ViewModels.IceServerViewModel.Apply C# (CSharp) Method

Apply() public method

public Apply ( ) : bool
return bool
        public bool Apply()
        {
            IceServer.Url = Url;
            IceServer.Username = Username;
            IceServer.Password = Password;

            return !string.IsNullOrEmpty(Url);
        }
IceServerViewModel