Skip to main content

Enum XmlTaskDiffAlgorithm

Namespace: Varigence.Languages.Biml.Task

Assembly: Biml.dll

C#


public enum XmlTaskDiffAlgorithm

Fields

FieldsDescription
AutoSpecifies that the comparison algorithm will be automatically chosen by the XML Task based on document size and other factors.
FastSpecifies that the documents will be compared quickly with a direct comparison of nodes in a depth first search of the tree. This may resolve in less descriptive differences such as a move operation being represented as an add operation and a remove operation.
PreciseSpecifies that the documents will be compared using a Zhang-Shasha tree node edit distance algorithm. This results in more descriptive difference calculation but can run slowly on large XML documents.