使用独立存储时未处理 SecurityException
使用此代码时,我收到上述错误:
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();
我不知道为什么?尽管。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修好了。任何存储的类都需要标记为公共标记类内部是不允许的。发生此问题的原因是 C# 并未默认使用新类的公共作用域。
Fixed it. Any stored class needs to be marked as public marking classes internal is not allowed. The issue happened because C# does not default to public scope with new classes.