WsFillBody function (webservices.h)
Ensures that there are a sufficient number of bytes available in a message for reading. It is up to the application to specify the number of bytes sufficient to contain the next XML construct to read.
This function is a shortcut for calling WsFillReader for the XML Reader being used to write the message. Calling WsFillReader directly is equivalent to calling this function.
Syntax
HRESULT WsFillBody(
[in] WS_MESSAGE *message,
[in] ULONG minSize,
[in, optional] const WS_ASYNC_CONTEXT *asyncContext,
[in, optional] WS_ERROR *error
);
Parameters
[in] message
A pointer to the WS_MESSAGE structure intended for "filling".
[in] minSize
The minimum number of bytes that the message should have buffered. If the current byte count buffered is equal to or greater than the value of minSize the function does nothing.
[in, optional] asyncContext
A pointer to a WS_ASYNC_CONTEXT data structure with information about invoking the function asynchronously. A NULL value indicates a request for synchronous operation.
[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 |
---|---|
|
Start of message was received successfully. |
|
The asynchronous operation is still pending. |
|
The input data was not in the expected format or did not have the expected value. |
|
One or more arguments are invalid. |
|
Ran out of memory. |
|
This function may return other errors not listed above. |
Remarks
This function is typically used when writing the message body with streamed mode set to WS_STREAMED_OUTPUT_TRANSFER_MODE, or when using an XML Reader in streamed mode.
This function is a "no-op" when writing the message body and WS_STREAMED_OUTPUT_TRANSFER_MODE is not set, or with an XML Reader's mode set to WS_XML_READER_BUFFER_INPUT.
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 |