Enum XmlTaskDiffOptions
Namespace: Varigence.Languages.Biml.Task
Assembly: Biml.dll
C#
[Flags]
public enum XmlTaskDiffOptions
Fields
| Fields | Description |
|---|---|
| IgnoreChildOrder | Specifies that node order will not be considered when comparing nodes. Sibling nodes with the same value will be treated as the same nodes. |
| IgnoreComments | Specifies that comments will not be considered when comparing nodes. |
| IgnoreDtd | Specifies that Document Type Declaration (DTD) blocks are not considered in the comparison. |
| IgnoreNamespaces | Specifies that name prefixes and namespace values are ignored during comparison. Elements and attributes with the same name and value but different namespaces and/or prefixes are treated as being the same. |
| IgnorePi | Specifies that name prefixes and namespace values are ignored during comparison. Elements and attributes with the same name and value but different namespaces and/or prefixes are treated as being the same. |
| IgnorePrefixes | Specifies that name prefixes are ignored during comparison. Elements and attributes with the same name, value, and namespace but different prefixes are treated as being the same. |
| IgnoreWhiteSpace | Specifies that all whitespace sequences will be normalized to a single space or removed before comparing nodes. |
| IgnoreXmlDeclaration | Specifies that differences in the XML specification are not considered in the comparison. |
| None | Specifies that a normal comparison will be performed without any special behaviors. |