nn::http::Connection::SendPostDataRaw Member Functionnn::Result SendPostDataRaw( const void * pValue, size_t valueSize, const nn::fnd::TimeSpan & timeout );
| Name | Description | |
|---|---|---|
| in | pValue | Data content. |
| in | valueSize | Data size of pValue. |
| in | timeout | Timeout interval. |
Result values listed below. | Value | Description |
|---|---|
Result::IsSuccess |
Process was successful. |
ResultTimeout |
Error indicating a timeout. |
| A value other than the above. | Refer to the version of the SendPostDataRaw function that has no timeout argument. |
This version of SendPostRawData has a timeout.
Other than allowing the caller to specify a timeout, this version functions identically to SendPostRawData. For feature details, see the function reference for the version without a timeout. Returns ResultTimeout if no POST data has been fully sent within the timeout period. If ResultTimeout is returned, the connection is automatically canceled. (In other words, the function internally implements Cancel.)
CONFIDENTIAL