BraintreeEncryptionExample.Settings.LoadSettings C# (CSharp) 메소드

LoadSettings() 개인적인 메소드

private LoadSettings ( ) : void
리턴 void
        private void LoadSettings()
        {
            _isolatedStorageSettings = IsolatedStorageSettings.ApplicationSettings;

            if (_isolatedStorageSettings.Contains(_merchantServerUrlKey))
            {
                MerchantServerUrl.Text = (string)_isolatedStorageSettings[_merchantServerUrlKey];
            }
            else _isolatedStorageSettings.Add(_merchantServerUrlKey, "");
        }