BraintreeEncryptionExample.MainPage.LoadSettings C# (CSharp) Method

LoadSettings() private method

private LoadSettings ( ) : void
return void
        private void LoadSettings()
        {
            _isolatedStorageSettings = IsolatedStorageSettings.ApplicationSettings;
            if (_isolatedStorageSettings.Contains(_merchantServerUrlKey))
            {
                _merchantServerUrl = (string)_isolatedStorageSettings[_merchantServerUrlKey];
            }
        }