 | XmlSchemaManagerChildElements Method |
Gets the SchemaDefinition for all elements, which can be added to the child which is
defined with the name of it's parent and the name of itself.
Namespace: Aml.Engine.SchemaAssembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntaxpublic IEnumerable<XmlSchemaElement> ChildElements(
XName parentName,
XName childName,
bool includeChoice = false
)
Public Function ChildElements (
parentName As XName,
childName As XName,
Optional includeChoice As Boolean = false
) As IEnumerable(Of XmlSchemaElement)
public:
IEnumerable<XmlSchemaElement^>^ ChildElements(
XName^ parentName,
XName^ childName,
bool includeChoice = false
)
Parameters
- parentName XName
- Name of the child's parent.
- childName XName
- Name of the child
- includeChoice Boolean (Optional)
- if set to true [include choice].
Return Value
IEnumerableXmlSchemaElementEnumeration of all SchemaDefinitions of possible child elements.
See Also