When using this code I get the above error:

        var userSettings = new UserSettings()
        {
            Username = TextBox_Username.ToString(),
            Password = TextBox_Password.ToString(),
            Operator = OperatorList.O2
        };

        var settings = IsolatedStorageSettings.ApplicationSettings;
        settings.Add("UserSettings", userSettings);
        settings.Save();

I'm not sure why? though.

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

Fixed it. Any stored class needs to be marked public internals not allowed.

link|improve this answer
3  
Thanks for posting your answer! – theChrisKent Nov 17 '10 at 21:33
1  
Beware: you should not call Save explicitly. The documentation says "On Silverlight for Windows Phone, IsolatedStorageSettings() is not thread safe and throws an IsolatedStorageException when Save() is called." (read here: msdn.microsoft.com/en-us/library/… ). Even if said exception is not always raised, I would avoid it. Anyways ApplicationSettings are saved automatically when the application shutdowns. – Francesco De Vittori Nov 18 '10 at 7:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.