Windows应用开发中的数据管理全解析
在Windows应用开发过程中,数据管理是至关重要的一环。以下将详细介绍不同类型数据的管理方式、相关工具的使用,以及如何获取远程数据。
会话状态恢复
在应用开发中,有时需要恢复会话状态。下面的代码展示了如何从会话状态文件中读取数据并恢复已注册框架的状态:
Try
' Get the input stream for the SessionState file
Dim file As Windows.Storage.StorageFile =
Await Windows.Storage.ApplicationData.Current.RoamingFolder.GetFileAsync(sessionStateFilename)
If file Is Nothing Then Return
Using inStream As Windows.Storage.Streams.IInputStream = Await file.OpenSequentialReadAsync()
' Deserialize the Session State
Dim serializer As New Runtime.Serialization.DataContractSerializer(
GetType(Dictionary(Of String, Object)), _knownTypes)
_sessionState = DirectCast(serializer.ReadO
超级会员免费看
订阅专栏 解锁全文

被折叠的 条评论
为什么被折叠?



