Skip to content

Commit 1c800b9

Browse files
johnBuffervinjiang
authored andcommitted
Update Microsoft Azure Storage Client Library for C++ 2.0.0.md
Fixed some markdown related typo
1 parent c5d94f0 commit 1c800b9

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

documentation/Microsoft Azure Storage Client Library for C++ 2.0.0.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#Azure Storage Client Library for C++ 2.0.0: What’s new and sample code
1+
# Azure Storage Client Library for C++ 2.0.0: What’s new and sample code
22

33
This article introduces the changes in Microsoft Azure Storage Client Library for C++ 2.0.0 and provides some code samples. You can also check the GitHub [readme.md](https://github.com/Azure/azure-storage-cpp/blob/master/README.md) and [changelog.log](https://github.com/Azure/azure-storage-cpp/blob/master/Changelog.txt) files for more details.
44

5-
##New storage blob type
5+
## New storage blob type
66

77
By default, Azure Storage Client Library for C++ 2.0.0 uses REST API version 2015-2-21. This version of the Azure Storage service includes several important features that you can find at [2015-2 version blog link]. The C++ client library supports one key feature, the new storage blob type called *Append Blob*.
88

@@ -66,7 +66,7 @@ The following sample code shows the use of Append Blob.
6666
ucout << U("Error: ") << e.what() << std::endl;
6767
}
6868

69-
##Range-based for-loop to list objects
69+
## Range-based for-loop to list objects
7070

7171
For versions earlier than 2.0.0, you can list blobs via the following method.
7272

@@ -101,7 +101,7 @@ With version 2.0.0, you can also use a range-based for-loop to list blobs.
101101

102102
For more details about listing APIs of the C++ client library, visit [Efficiently use Listing APIs in Microsoft Azure Storage Client Library for C++](https://azure.microsoft.com/documentation/articles/storage-c-plus-plus-enumeration/).
103103

104-
##Handling query parameters in the resource URI
104+
## Handling query parameters in the resource URI
105105

106106
With versions earlier than 2.0.0, the C++ client library will *keep* only the following parameters and ignore the others when handling the Azure Storage resource URI:
107107

@@ -225,16 +225,17 @@ Note that with this behavior change, the C++ client library will throw an `std::
225225
web::http::uri(U("https://myaccount-secondary.queue.core.windows.net/myqueue?sp=raup&sv=2012-02-12&se=2013-05-14T18%3A23%3A15Z&st=2013-05-14T17%3A23%3A15Z&sig=mysignature")));
226226
azure::storage::cloud_queue queue2(sas_uri, sas_credentials);
227227

228-
##Renamed interfaces
228+
## Renamed interfaces
229229

230230
Azure Storage Client Library for C++ 2.0.0 changes interfaces as follows:
231231
- Renames `cloud_blob::start_copy_from_blob` to `cloud_blob::start_copy`
232232
- Renames `cloud_blob::start_copy_from_blob_async` to `cloud_blob::start_copy_async`
233233

234-
##Bug fixes
234+
## Bug fixes
235+
235236
You can find the bug fixes at [changelog.txt](https://github.com/Azure/azure-storage-cpp/blob/master/Changelog.txt).
236237

237-
##Next steps
238+
## Next steps
238239

239240
For more information about Azure Storage and the client library for C++, see the following resources:
240241
- [How to use Blob Storage from C++](http://azure.microsoft.com/documentation/articles/storage-c-plus-plus-how-to-use-blobs/)

0 commit comments

Comments
 (0)