XdmType.FunctionType Method (XdmType[])XdmType.FunctionType Method (XdmType())XdmType::FunctionType Method (array<XdmType^>^)

Creates a reference to the function type for a function with the specified signature.

Syntax

Public Shared Function FunctionType( _
    signatureTypes As XdmType[] _
) As XdmType
public static XdmType FunctionType(
    XdmType[] signatureTypes
)
public:
static XdmType^ FunctionType(
    array<XdmType^> signatureTypes
)
 

Parameters

signatureTypes

Type: XmlPrime.XdmType[]XmlPrime.XdmType()array<XmlPrime::XdmType^>^

The return type, followed by any argument types.

Return Value

Type: XmlPrime.XdmTypeXmlPrime.XdmTypeXmlPrime::XdmType^

An XdmTypeXdmTypeXdmType instance representing function type for a function with the specified signature.

Remarks

This corresponds to the XPath 3.0 type function(SequenceType, SequenceType, ... ) as SequenceType.