Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Storage] Corrected documentation for BlockBlobClient.StageBlockAsync #45942

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions sdk/storage/Azure.Storage.Blobs/src/BlockBlobClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ internal virtual async Task<Response<BlobContentInfo>> UploadInternal(
///
/// For a given blob, the length of the value specified for the
/// blockid parameter must be the same size for each block. Note that
/// the Base64 string must be URL-encoded.
/// the Base64 string will be URL-encoded.
/// </param>
/// <param name="content">
/// A <see cref="Stream"/> containing the content to upload.
Expand Down Expand Up @@ -1064,7 +1064,7 @@ public virtual Response<BlockInfo> StageBlock(
///
/// For a given blob, the length of the value specified for the
/// blockid parameter must be the same size for each block. Note that
/// the Base64 string must be URL-encoded.
/// the Base64 string will be URL-encoded.
/// </param>
/// <param name="content">
/// A <see cref="Stream"/> containing the content to upload.
Expand Down Expand Up @@ -1136,7 +1136,7 @@ public virtual async Task<Response<BlockInfo>> StageBlockAsync(
///
/// For a given blob, the length of the value specified for the
/// blockid parameter must be the same size for each block. Note that
/// the Base64 string must be URL-encoded.
/// the Base64 string will be URL-encoded.
/// </param>
/// <param name="content">
/// A <see cref="Stream"/> containing the content to upload.
Expand Down Expand Up @@ -1187,7 +1187,7 @@ public virtual Response<BlockInfo> StageBlock(
///
/// For a given blob, the length of the value specified for the
/// blockid parameter must be the same size for each block. Note that
/// the Base64 string must be URL-encoded.
/// the Base64 string will be URL-encoded.
/// </param>
/// <param name="content">
/// A <see cref="Stream"/> containing the content to upload.
Expand Down Expand Up @@ -1238,7 +1238,7 @@ await StageBlockInternal(
///
/// For a given blob, the length of the value specified for the
/// blockid parameter must be the same size for each block. Note that
/// the Base64 string must be URL-encoded.
/// the Base64 string will be URL-encoded.
/// </param>
/// <param name="content">
/// A <see cref="Stream"/> containing the content to upload.
Expand Down Expand Up @@ -1389,7 +1389,7 @@ internal virtual async Task<Response<BlockInfo>> StageBlockInternal(
/// encoding, the string must be less than or equal to 64 bytes in
/// size. For a given blob, the length of the value specified for
/// the <paramref name="base64BlockId"/> parameter must be the same
/// size for each block. Note that the Base64 string must be
/// size for each block. Note that the Base64 string will be
/// URL-encoded.
/// </param>
/// <param name="options">
Expand Down Expand Up @@ -1445,7 +1445,7 @@ public virtual Response<BlockInfo> StageBlockFromUri(
/// encoding, the string must be less than or equal to 64 bytes in
/// size. For a given blob, the length of the value specified for
/// the <paramref name="base64BlockId"/> parameter must be the same
/// size for each block. Note that the Base64 string must be
/// size for each block. Note that the Base64 string will be
/// URL-encoded.
/// </param>
/// <param name="options">
Expand Down Expand Up @@ -1501,7 +1501,7 @@ await StageBlockFromUriInternal(
/// encoding, the string must be less than or equal to 64 bytes in
/// size. For a given blob, the length of the value specified for
/// the <paramref name="base64BlockId"/> parameter must be the same
/// size for each block. Note that the Base64 string must be
/// size for each block. Note that the Base64 string will be
/// URL-encoded.
/// </param>
/// <param name="sourceRange">
Expand Down Expand Up @@ -1584,7 +1584,7 @@ public virtual Response<BlockInfo> StageBlockFromUri(
/// encoding, the string must be less than or equal to 64 bytes in
/// size. For a given blob, the length of the value specified for
/// the <paramref name="base64BlockId"/> parameter must be the same
/// size for each block. Note that the Base64 string must be
/// size for each block. Note that the Base64 string will be
/// URL-encoded.
/// </param>
/// <param name="sourceRange">
Expand Down Expand Up @@ -1667,7 +1667,7 @@ await StageBlockFromUriInternal(
/// encoding, the string must be less than or equal to 64 bytes in
/// size. For a given blob, the length of the value specified for
/// the <paramref name="base64BlockId"/> parameter must be the same
/// size for each block. Note that the Base64 string must be
/// size for each block. Note that the Base64 string will be
/// URL-encoded.
/// </param>
/// <param name="sourceRange">
Expand Down