fsNetworkHttpRequestGetHeaderSection

The fsNetworkHttpRequestGetHeaderSection function is used to get the value of a specific header for the given request.

 

Syntax
char* fsNetworkHttpRequestGetHeaderSection(
    FsNetworkRequestId requestId
    const char* section
);

 

Members
Parameters Description
requestId The request ID to get the data from.
section The header name to get the value from.
 
Return Values

This function will returns a valid pointer if it's successful (and this pointer must be freed). Otherwise it will returns a nullptr if the call failed.

 

Remarks

N/A

 

See Also