Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PackagePart 对象包括什么?它是否包含与其关联的文件的实际数据,还是仅包含 Uri、内容类型和压缩选项?
使PackagePart您可以使用其中一个重载访问其包含的数据GetStream(),作为Stream(显然)。根据具体的实现,您也可以直接从Uri属性中获取数据,但使用打包 API 是一种更简单、更通用的方法,无需您的客户端代码了解有关包的底层后备存储的任何信息(例如,包不必是 zip 文件,它可以是 Web 服务)。
PackagePart
GetStream()
Stream
Uri