WsWriteChars function
Writes a series of characters to an element or attribute. To write characters to an attribute value, call WsWriteStartAttribute first. Only whitespace characters may be written at the root of an xml document unless the WS_XML_WRITER_PROPERTY_ALLOW_FRAGMENT has been set to TRUE.
Syntax
HRESULT WINAPI WsWriteChars(
_In_ WS_XML_WRITER* writer,
const WCHAR* chars,
_In_ ULONG charCount,
_In_opt_ WS_ERROR* error
);
Parameters
- writer [in]
-
A pointer to the WS_XML_WRITER object to which the characters are written. The pointer must reference a valid XML Writer object.
- chars
-
A pointer to the characters to write.
- charCount [in]
-
The number of characters to write.
- error [in, optional]
-
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 |
|---|---|
|
One or more arguments are invalid. |
|
The operation is not allowed due to the current state of the object. |
Remarks
WsWriteChars can be called more than once between WsWriteStartAttribute and WsWriteEndAttribute. It cannot be combined with WsWriteCharsUtf8, WsWriteBytes, WsWriteValue or WsWriteText when writing an attribute.
Requirements
|
Minimum supported client | Windows 7 [desktop apps | Windows Store apps] |
|---|---|
|
Minimum supported server | Windows Server 2008 R2 [desktop apps | Windows Store apps] |
|
Header |
|
|
Library |
|
|
DLL |
|