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.
|
A static class to allow users to create input and out streams based off STL collections. The sole purpose of this class to avoid users from having to know anything about stream buffers. More...
#include <containerstream.h>
Public Types | |
typedef _CollectionType::value_type | char_type |
typedef container_buffer< _CollectionType > | buffer_type |
Static Public Member Functions | |
static concurrency::streams::basic_istream< char_type > | open_istream (_CollectionType data) |
Creates an input stream given an STL container. More... | |
static concurrency::streams::basic_ostream< char_type > | open_ostream () |
Creates an output stream using an STL container as the storage. More... | |
A static class to allow users to create input and out streams based off STL collections. The sole purpose of this class to avoid users from having to know anything about stream buffers.
_CollectionType | The type of the STL collection. |
|
inlinestatic |
Creates an input stream given an STL container.
STL container to back the input stream.
|
inlinestatic |
Creates an output stream using an STL container as the storage.