BlipFace.Presenter.LoginPresenter.SaveAutoLogon C# (CSharp) Method

SaveAutoLogon() public method

Metoda wywoływana gdy autorycajca zakończy się sukcesem
public SaveAutoLogon ( bool autoLogon ) : void
autoLogon bool
return void
        public void SaveAutoLogon(bool autoLogon)
        {
            Properties.Settings.Default.AutoLogon = autoLogon;
            Properties.Settings.Default.Save();
        }