Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken links #1707

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "Document Serialization and Storage"
description: Learn how documents are serialized, deserialized, and stored in Windows Presentation Foundation (WPF).
description: Learn how documents are serialized, deserialized, and stored in Windows Presentation Foundation (WPF).
ms.date: "03/30/2017"
helpviewer_keywords:
- "serialization of documents [WPF], , "
- "serialization of documents [WPF]"
- "documents [WPF], storage"
- "documents [WPF], serialization"
ms.assetid: 4839cd87-e206-4571-803f-0200098ad37b
Expand Down Expand Up @@ -83,4 +83,4 @@ Both plug-in serializers and linked serializers use the same exposed public meth
- <xref:System.Windows.Xps.Packaging.XpsDocument>
- [Documents in WPF](documents-in-wpf.md)
- [Printing Overview](printing-overview.md)
- [XML Paper Specification](https://www.ecma-international.org/activities/XML%20Paper%20Specification/XPS%20Standard%20WD%201.6.pdf)
- [XML Paper Specification](https://www.ecma-international.org/publications-and-standards/standards/ecma-388/)
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To provide a consistent mechanism for identifying and loading these types of fil

## The Pack URI Scheme

The pack URI scheme is used by the [Open Packaging Conventions](https://www.ecma-international.org/publications/standards/Ecma-376.htm) (OPC) specification, which describes a model for organizing and identifying content. The key elements of this model are packages and parts, where a *package* is a logical container for one or more logical *parts*. The following figure illustrates this concept.
The pack URI scheme is used by the [Open Packaging Conventions](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/) (OPC) specification, which describes a model for organizing and identifying content. The key elements of this model are packages and parts, where a *package* is a logical container for one or more logical *parts*. The following figure illustrates this concept.

![Package and Parts diagram](./media/pack-uris-in-wpf/wpf-package-parts-diagram.png)

Expand Down
Loading