Share via


WSDXML_ELEMENT (Compact 2013)

3/26/2014

This structure describes an XML element.

Syntax

typedef struct _WSDXML_ELEMENT {
  WSDXML_NODE Node;
  WSDXML_NAME* Name;
  WSDXML_ATTRIBUTE* FirstAttribute;
  WSDXML_NODE* FirstChild;
  WSDXML_PREFIX_MAPPING* PrefixMappings;
} WSDXML_ELEMENT;

Members

  • Node
    Reference to a WSDXML_NODE structure that specifies the parent element, next sibling and type of the node.
  • Name
    Reference to a WSDXML_NAME structure that specifies name.
  • FirstAttribute
    Reference to a WSDXML_ATTRIBUTE structure that specifies the first attribute.
  • FirstChild
    Reference to a WSDXML_NODE structure that specifies the first child.

Remarks

WSDXML_ELEMENT represents an XML element in the DOM tree. The Name member can be used to determine the name and namespace of this element. FirstAttribute points to any attributes, and FirstChild points to anything contained within the element.

Requirements

Header

wsdapi.h

Library

wsdapi.lib

See Also

Reference

Web Services on Devices Structures