IsXmlDoc()

Determines whether a function parameter is an Extended Markup language (XML) document object.

IsXmlDoc( value=any );

Returns: Boolean

Argument Description
value
any, required

Name of an XML document object

Examples

<cfxml variable="xmlobject">
	<office>
		<employee>
			<emp_name>lucee_dev</emp_name>
			<emp_no>121</emp_no>
		</employee>
	</office>
	</cfxml>
<cfdump var="#isxmldoc(xmlobject)#" />

See also