Skip to content

Commit

Permalink
Added documentaiton to clarify BlobCopyFromUriOptions.CopySourceTagsM…
Browse files Browse the repository at this point in the history
…ode behavior (#42907)
  • Loading branch information
seanmcc-msft authored Mar 22, 2024
1 parent 0ef8e8d commit 1f40862
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sdk/storage/Azure.Storage.Blobs/src/BlobBaseClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3257,7 +3257,7 @@ internal async Task<Stream> OpenReadInternal(
/// whether it resides in the same account or in a different account.
/// </param>
/// <param name="options">
/// Optional parameters.
/// Optional parameters. Note that <see cref="BlobCopyFromUriOptions.CopySourceTagsMode"/> is not applicable to this API.
/// </param>
/// <param name="cancellationToken">
/// Optional <see cref="CancellationToken"/> to propagate
Expand Down Expand Up @@ -3412,7 +3412,7 @@ public virtual CopyFromUriOperation StartCopyFromUri(
/// whether it resides in the same account or in a different account.
/// </param>
/// <param name="options">
/// Optional parameters.
/// Optional parameters. Note that <see cref="BlobCopyFromUriOptions.CopySourceTagsMode"/> is not applicable to this API.
/// </param>
/// <param name="cancellationToken">
/// Optional <see cref="CancellationToken"/> to propagate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class BlobCopyFromUriOptions
public HttpAuthorization SourceAuthentication { get; set; }

/// <summary>
/// Optional.
/// Optional. Note that this option is not applicable to <see cref="BlobBaseClient.StartCopyFromUri(System.Uri, BlobCopyFromUriOptions, System.Threading.CancellationToken)"/> and <see cref="BlobBaseClient.StartCopyFromUriAsync(System.Uri, BlobCopyFromUriOptions, System.Threading.CancellationToken)"/>.
/// If <see cref="BlobCopySourceTagsMode.Replace"/>, the tags on the destination blob will be set to <see cref="Tags"/>.
/// If <see cref="BlobCopySourceTagsMode.Copy"/>, the tags on the source blob will be copied to the destination blob.
/// Default is to replace.
Expand Down

0 comments on commit 1f40862

Please sign in to comment.