C++ Rest SDK
The C++ REST SDK is a Microsoft project for cloud-based client-server communication in native code using a modern asynchronous C++ API design. This project aims to help C++ developers connect to and interact with services.
|
Public Member Functions | |
function_pipeline_wrapper (std::function< pplx::task< http_response >(http_request, std::shared_ptr< http::http_pipeline_stage >)> handler) | |
virtual pplx::task< http_response > | propagate (http_request request) override |
Runs this stage against the given request and passes onto the next stage. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from web::http::http_pipeline_stage | |
const std::shared_ptr< http_pipeline_stage > & | next_stage () const |
Gets the next stage in the pipeline. More... | |
std::shared_ptr< http_pipeline_stage > | current_stage () |
Gets a shared pointer to this pipeline stage. More... | |
|
inlineoverridevirtual |
Runs this stage against the given request and passes onto the next stage.
request | The HTTP request. |
Implements web::http::http_pipeline_stage.