IWSDServiceProxy::BeginGetMetadata method (wsdclient.h)

Initiates an asynchronous metadata exchange request with the remote service.

Syntax

HRESULT BeginGetMetadata(
  [out] IWSDAsyncResult **ppResult
);

Parameters

[out] ppResult

An IWSDAsyncResult interface that you use to poll for the result, register a callback object, or configure an event to be signaled when the response is received.

Return value

Possible return values include, but are not limited to, the following:

Return code Description
S_OK
Method completed successfully.
E_POINTER
ppResult is NULL.
E_ABORT
The method could not be completed.
E_OUTOFMEMORY
Insufficient memory to complete the operation.
E_FAIL
The method failed.

Remarks

Call IWSDServiceProxy::EndGetMetadata to complete the asynchronous operation and to retrieve the metadata.

Requirements

Requirement Value
Minimum supported client Windows Vista [desktop apps only]
Minimum supported server Windows Server 2008 [desktop apps only]
Target Platform Windows
Header wsdclient.h (include Wsdapi.h)
DLL Wsdapi.dll

See also

IWSDServiceProxy