Click or drag to resize

XmlSchemaManagerAddNewAfterSelf Method

Creates a new Xml-Element with the provided content and inserts it behind the provided sibling according to this schema instance.

Namespace: Aml.Engine.Schema
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public virtual XElement AddNewAfterSelf(
	XElement siblingBefore,
	XName childName,
	Object content
)

Parameters

siblingBefore  XElement
the sibling of the new added element.
childName  XName
the name of the new added element.
content  Object
the content of the new added element.

Return Value

XElement
The created XML element.
See Also