WsCall function
Used internally by the service proxy to format the specified arguments according to the specified metadata and send them in a message. The application should never call this function directly.
Syntax
HRESULT WINAPI WsCall( _In_ WS_SERVICE_PROXY* serviceProxy, _In_ const WS_OPERATION_DESCRIPTION* operation, _In_opt_ const void** arguments, _In_ WS_HEAP* heap, const WS_CALL_PROPERTY* callProperties, _In_ const ULONG callPropertyCount, _In_opt_ const WS_ASYNC_CONTEXT* asyncContext, _In_opt_ WS_ERROR* error );
Parameters
- serviceProxy [in]
-
Pointer to a WS_SERVICE_PROXY structure representing the service proxy.
- operation [in]
-
Pointer to a WS_OPERATION_DESCRIPTION structure containing the metadata for the call.
- arguments [in, optional]
-
An array of pointers to the individual arguments for the service operation being represented by the operation parameter.
The number of elements must correspond to the number of parameters specified as part of WS_OPERATION_DESCRIPTION in the operation parameter.
- heap [in]
-
Pointer to a WS_HEAP structure representing the heap from which memory is allocated for the call.
- callProperties
-
An array of WS_CALL_PROPERTY structures containing the call properties.
- callPropertyCount [in]
-
The number of properties in the call properties array.
- asyncContext [in, optional]
-
Pointer to information for invoking the function asynchronously. Pass NULL to invoke the function synchronously.
- error [in, optional]
-
Pointer to a WS_ERROR structure that receives additional error information if the function fails.
Return value
If the function succeeds, it returns NO_ERROR; otherwise, it returns an HRESULT error code.
| Return code | Description |
|---|---|
|
The operation is not allowed due to the current state of the object. |
|
A quota was exceeded. |
|
The operation was abandoned. |
|
The operation did not complete within the time allotted. |
|
Insufficient memory to complete the operation. |
|
One or more arguments are invalid. |
|
The asynchronous operation is still pending. |
|
This function may return other errors not listed above. |
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 |
|