Share via


WSDXML_ATTRIBUTE (Compact 2013)

3/26/2014

This structure describes an XML attribute.

Syntax

typedef struct _WSDXML_ATTRIBUTE {
  WSDXML_ELEMENT* Element;
  WSDXML_ATTRIBUTE* Next;
  WSDXML_NAME* Name;
  WCHAR* Value;
} WSDXML_ATTRIBUTE;

Members

  • Element
    Reference to a WSDXML_ELEMENT structure that specifies parent element of the attribute.
  • Next
    Reference to a WSDXML_ATTRIBUTE structure that specifies the next sibling attribute, if any.
  • Name
    Reference to a WSDXML_NAME structure that specifies the qualified name of the attribute.
  • Value
    The value of the attribute.

Remarks

WSDXML_ATTRIBUTE is used to describe attribute values in an XML element.

Requirements

Header

wsdapi.h

Library

wsdapi.lib

See Also

Reference

Web Services on Devices Structures