Skip to content

Commit 6bb8337

Browse files
committed
Readability
1 parent fe6ac0f commit 6bb8337

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/cloud/cloud-and-web-programming-in-visual-cpp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ ms.date: "11/06/2025"
55
ms.topic: "overview"
66
ms.custom: intro-overview
77
---
8-
# Cloud and Web Programming in Microsoft C++
8+
# Cloud and web programming in Microsoft C++
99

1010
In C++, you have several options for connecting to the web and the cloud.
1111

1212
## Microsoft Azure SDKs and REST services
1313

1414
- [Azure SDK for C++](/azure/developer/cpp/sdk/overview)
1515

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:
1717

1818
- Azure Core
1919
- Azure Identity
@@ -29,7 +29,7 @@ In C++, you have several options for connecting to the web and the cloud.
2929
The Azure Storage Client Library for C++ provides a comprehensive API for working with Azure storage, including but not limited to the following abilities:
3030

3131
- 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.
3333
- Insert, delete, replace, merge, and query entities in an Azure table.
3434
- Enqueue and dequeue messages in an Azure queue.
3535
- 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.
5555

5656
- [Windows::Web::Http::HttpClient](/uwp/api/windows.web.http.httpclient)
5757

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, 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.
5959

6060
- [IXMLHTTPRequest2 interface](/windows/win32/api/msxml6/nn-msxml6-ixmlhttprequest2)
6161

0 commit comments

Comments
 (0)