0

Session.Abandon()在 Windows Phone 8 中是否有等价物?

例如,为了在 Windows Phone 中创建“会话”,可以执行以下操作:

PhoneApplicationService.Current.State["Username"] = username;

现在,我可以简单地使用以下方法破坏它的价值:

PhoneApplicationService.Current.State["Username"] = null;

但是,如果我有多个“会话”,我将不得不为每个“会话”执行此操作。有没有一种方法可以破坏 Windows Phone 中的所有“会话”?

4

1 回答 1

1

Have you tried this? State is an IDictionary and should support this method.

PhoneApplicationService.Current.State.Clear();
于 2013-06-23T12:40:57.423 回答