You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cloud/cloud-and-web-programming-in-visual-cpp.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,15 +5,15 @@ ms.date: "11/06/2025"
5
5
ms.topic: "overview"
6
6
ms.custom: intro-overview
7
7
---
8
-
# Cloud and Web Programming in Microsoft C++
8
+
# Cloud and web programming in Microsoft C++
9
9
10
10
In C++, you have several options for connecting to the web and the cloud.
11
11
12
12
## Microsoft Azure SDKs and REST services
13
13
14
14
-[Azure SDK for C++](/azure/developer/cpp/sdk/overview)
15
15
16
-
The Azure SDK for C++ provides a set of client libraries that enable your C++ applications to interact seamlessly with Azure services, whether in local or cloud environments. These libraries, built on top of the Azure REST API, offer familiar C++ syntax and implement common cloud patterns such as authentication, logging, and retries.The SDK provides a consistent interface for working with Azure services including:
16
+
The Azure SDK for C++ provides a set of client libraries that enable your C++ applications to interact seamlessly with Azure services, whether in local or cloud environments. These libraries, built on top of the Azure REST API, offer familiar C++ syntax and implement common cloud patterns such as authentication, logging, and retries.The SDK provides a consistent interface for working with Azure services including:
17
17
18
18
- Azure Core
19
19
- Azure Identity
@@ -29,7 +29,7 @@ In C++, you have several options for connecting to the web and the cloud.
29
29
The Azure Storage Client Library for C++ provides a comprehensive API for working with Azure storage, including but not limited to the following abilities:
30
30
31
31
- Create, read, delete, and list blob containers, tables, and queues.
32
-
- Create, read, delete, list and copy blobs plus read and write blob ranges.
32
+
- Create, read, delete, list, and copy blobs plus read and write blob ranges.
33
33
- Insert, delete, replace, merge, and query entities in an Azure table.
34
34
- Enqueue and dequeue messages in an Azure queue.
35
35
- Lazily list containers, blobs, tables, and queues, and lazily query entities
@@ -55,7 +55,7 @@ In C++, you have several options for connecting to the web and the cloud.
A Windows Runtime HTTP client class modeled on the .NET Framework class of the same name in the System.Web namespace. `HttpClient` fully supports asynchronous upload and download over HTTP, and pipeline filters that enable the insertion of custom HTTP handlers into the pipeline. The Windows SDK includes sample filters for metered networks, OAuth authentication, and more. For apps that target only Universal Windows Platform, we recommend that you use the `Windows::Web::Http::HttpClient` class.
58
+
A Windows Runtime HTTP client class modeled on the .NET Framework class of the same name in the System.Web namespace. `HttpClient` fully supports asynchronous upload and download over HTTP, and pipeline filters that enable the insertion of custom HTTP handlers into the pipeline. The Windows SDK includes sample filters for metered networks, OAuth authentication, and more. For apps that target only Universal Windows Platform, use the `Windows::Web::Http::HttpClient` class.
0 commit comments