Share via


WSDXML_ELEMENT

Other versions of this page are also available for the following:

Windows Mobile Not SupportedWindows Embedded CE Supported

8/28/2008

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
Windows Embedded CE Windows Embedded CE 6.0 R2

See Also

Reference

Web Services on Devices Structures