Class PrefabExtensionInsertPatch.PrefabExtensionXmlDocumentAttribute
- Namespace
- Bannerlord.UIExtenderEx.Prefabs2
- Assembly
- Bannerlord.UIExtenderEx.dll
Use when the property or return of your method is of type XmlDocument.
If RemoveRootNode is set to false, the root node of the document,
as well as all of its children, will be inserted at the target location.
If RemoveRootNode is set to true, the root node of the document
will be ignored, and all of the root node's children will be placed at the target location instead.
See PrefabExtensionInsertPatch.PrefabExtensionContentAttribute for more info.
protected sealed class PrefabExtensionInsertPatch.PrefabExtensionXmlDocumentAttribute : PrefabExtensionInsertPatch.PrefabExtensionSingleContentAttribute
- Inheritance
-
PrefabExtensionInsertPatch.PrefabExtensionXmlDocumentAttribute
- Inherited Members
Constructors
PrefabExtensionXmlDocumentAttribute(bool)
Use when the property or return of your method is of type XmlDocument.
If RemoveRootNode is set to false, the root node of the document,
as well as all of its children, will be inserted at the target location.
If RemoveRootNode is set to true, the root node of the document
will be ignored, and all of the root node's children will be placed at the target location instead.
See PrefabExtensionInsertPatch.PrefabExtensionContentAttribute for more info.
public PrefabExtensionXmlDocumentAttribute(bool removeRootNode = false)
Parameters
removeRootNode
boolIf set to true, the root node of will be removed.
This is useful when you wish to insert multiple nodes at the same level (as siblings) from a single patch.