nn::http::Connection::SendPostDataAscii Member Function

Syntax

nn::Result SendPostDataAscii(
     const char * pLabel,
     const char * pValue
);

Arguments

Name Description
in pLabel Label name of the data.
in pValue Data content.

Return Values

Returns the result of the operation.

Description

Function used to set POST data (as ASCII strings) in "lazy" (delayed) POST data configuration mode.

In "lazy" POST data configuration mode, which can be entered by calling SetLazyPostDataSetting, this function can be used after either Connect or ConnectAsync is called. For more information about "lazy" POST data configuration mode, see the description of the SetLazyPostDataSetting function.

Note: Unlike SendPostDataAscii, this function does not have an attached timeout. In other words, the process will not return from this function until processing has ended.
For this reason, in environments where communications are slow you can expect a long time to pass before the process ends and returns from this function.

Revision History

2010/06/14
Initial version.

CONFIDENTIAL