Casablanca 是微软公司用来支持基于云计算平台的客户端服务器通讯框架,使用先进的异步 C++ API 设计。
Casablanca 主要特点:
示例代码:
http_client bing( L"http://www.bing.com/search" ); bing.request( methods::GET, L"?q=S.Somasegar" ) .then( []( http_response response ) { cout << "HTML SOURCE:" << endl << response.to_string() << endl; }) .wait();