WsReadCharsUtf8 function (webservices.h)
Reads a specified number of text characters from the reader and returns them encoded in UTF-8.
Syntax
HRESULT WsReadCharsUtf8(
[in] WS_XML_READER *reader,
BYTE *bytes,
[in] ULONG maxByteCount,
[out] ULONG *actualByteCount,
[in, optional] WS_ERROR *error
);
Parameters
[in] reader
A pointer to the XML Reader from which the character data should be read. The pointer must reference a valid WS_XML_READER object.
bytes
A pointer to the buffer to place the encoded bytes that have been read.
[in] maxByteCount
The maximum number of bytes that should be read.
[out] actualByteCount
A pointer to a ULONG value of the actual number of bytes that were read. This may be less than maxByteCount even when there are more bytes remaining. There are no more bytes when this returns zero.
[in, optional] error
A pointer to a WS_ERROR object where additional information about the error should be stored if the function fails.
Return value
This function can return one of these values.
Return code | Description |
---|---|
|
The input data was not in the expected format or did not have the expected value. |
|
A quota was exceeded. |
Remarks
XML text is read up to either a start element or end element. Comments are skipped, and CDATA content is treated identically to element content. Character entities are converted to their unescaped form.
This function can fail for any of the reasons listed in WsReadNode.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 7 [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2008 R2 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | webservices.h |
Library | WebServices.lib |
DLL | WebServices.dll |