Summary
Specifies how to deal with metadata from joined documents.
- Assembly
- Wyam
.Core .dll - Namespace
- Wyam
.Core .Modules .Contents - Base Types
-
- Enum
graph BT
Type-->Base0["Enum"]
Type["JoinedMetadata"]
class Type type-node
Syntax
public enum JoinedMetadata
Fields
Name | Constant Value | Summary |
---|---|---|
All |
3 |
The joined document includes metadata from all joined documents and uses the value from the
first document in the sequence of documents to join in the case of duplicate keys.
static
|
All |
4 |
The joined document includes metadata from all joined documents and uses the value from the
last document in the sequence of documents to join in the case of duplicate keys.
static
|
DefaultOnly | 0 |
The joined document only includes the default global metadata.
static
|
FirstDocument | 1 |
The joined document includes the metadata from the first document in the sequence of documents to join.
static
|
LastDocument | 2 |
The joined document includes the metadata from the last document in the sequence of documents to join.
static
|