Skip to content

Commit beff6fa

Browse files
authored
initial commit (Azure#48311)
1 parent 4157b2d commit beff6fa

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

sdk/storage/Azure.Storage.Blobs/src/BlobBaseClient.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2957,7 +2957,7 @@ public virtual async Task<Stream> OpenReadAsync(
29572957
/// Defaults to the beginning of the blob.
29582958
/// </param>
29592959
/// <param name="bufferSize">
2960-
/// The buffer size to use when the stream downloads parts
2960+
/// The buffer size (in bytes) to use when the stream downloads parts
29612961
/// of the blob. Defaults to 1 MB.
29622962
/// </param>
29632963
/// <param name="conditions">
@@ -3001,7 +3001,7 @@ public virtual Stream OpenRead(
30013001
/// Defaults to the beginning of the blob.
30023002
/// </param>
30033003
/// <param name="bufferSize">
3004-
/// The buffer size to use when the stream downloads parts
3004+
/// The buffer size (in bytes) to use when the stream downloads parts
30053005
/// of the blob. Defaults to 1 MB.
30063006
/// </param>
30073007
/// <param name="cancellationToken">
@@ -3038,7 +3038,7 @@ public virtual Stream OpenRead(
30383038
/// Defaults to the beginning of the blob.
30393039
/// </param>
30403040
/// <param name="bufferSize">
3041-
/// The buffer size to use when the stream downloads parts
3041+
/// The buffer size (in bytes) to use when the stream downloads parts
30423042
/// of the blob. Defaults to 1 MB.
30433043
/// </param>
30443044
/// <param name="conditions">
@@ -3082,7 +3082,7 @@ public virtual async Task<Stream> OpenReadAsync(
30823082
/// Defaults to the beginning of the blob.
30833083
/// </param>
30843084
/// <param name="bufferSize">
3085-
/// The buffer size to use when the stream downloads parts
3085+
/// The buffer size (in bytes) to use when the stream downloads parts
30863086
/// of the blob. Defaults to 1 MB.
30873087
/// </param>
30883088
/// <param name="cancellationToken">
@@ -3119,7 +3119,7 @@ public virtual async Task<Stream> OpenReadAsync(
31193119
/// Defaults to the beginning of the blob.
31203120
/// </param>
31213121
/// <param name="bufferSize">
3122-
/// The buffer size to use when the stream downloads parts
3122+
/// The buffer size (in bytes) to use when the stream downloads parts
31233123
/// of the blob. Defaults to 1 MB.
31243124
/// </param>
31253125
/// <param name="conditions">

sdk/storage/Azure.Storage.Blobs/src/Models/BlobOpenReadOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class BlobOpenReadOptions
1717
public long Position { get; set; }
1818

1919
/// <summary>
20-
/// The buffer size to use when the stream downloads parts
20+
/// The buffer size (in bytes) to use when the stream downloads parts
2121
/// of the blob. Defaults to 4 MB.
2222
/// </summary>
2323
public int? BufferSize { get; set; }

sdk/storage/Azure.Storage.Files.DataLake/src/DataLakeFileClient.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5470,7 +5470,7 @@ public virtual async Task<Stream> OpenReadAsync(
54705470
/// Defaults to the beginning of the file.
54715471
/// </param>
54725472
/// <param name="bufferSize">
5473-
/// The buffer size to use when the stream downloads parts
5473+
/// The buffer size (in bytes) to use when the stream downloads parts
54745474
/// of the file. Defaults to 1 MB.
54755475
/// </param>
54765476
/// <param name="conditions">
@@ -5527,7 +5527,7 @@ public virtual Stream OpenRead(
55275527
/// Defaults to the beginning of the file.
55285528
/// </param>
55295529
/// <param name="bufferSize">
5530-
/// The buffer size to use when the stream downloads parts
5530+
/// The buffer size (in bytes) to use when the stream downloads parts
55315531
/// of the file. Defaults to 1 MB.
55325532
/// </param>
55335533
/// <param name="cancellationToken">
@@ -5577,7 +5577,7 @@ public virtual Stream OpenRead(
55775577
/// Defaults to the beginning of the file.
55785578
/// </param>
55795579
/// <param name="bufferSize">
5580-
/// The buffer size to use when the stream downloads parts
5580+
/// The buffer size (in bytes) to use when the stream downloads parts
55815581
/// of the file. Defaults to 1 MB.
55825582
/// </param>
55835583
/// <param name="conditions">
@@ -5634,7 +5634,7 @@ public virtual async Task<Stream> OpenReadAsync(
56345634
/// Defaults to the beginning of the file.
56355635
/// </param>
56365636
/// <param name="bufferSize">
5637-
/// The buffer size to use when the stream downloads parts
5637+
/// The buffer size (in bytes) to use when the stream downloads parts
56385638
/// of the file. Defaults to 1 MB.
56395639
/// </param>
56405640
/// <param name="cancellationToken">

sdk/storage/Azure.Storage.Files.DataLake/src/Models/DataLakeOpenReadOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class DataLakeOpenReadOptions
1515
public long Position { get; set; }
1616

1717
/// <summary>
18-
/// The buffer size to use when the stream downloads parts
18+
/// The buffer size (in bytes) to use when the stream downloads parts
1919
/// of the file. Defaults to 4 MB.
2020
/// </summary>
2121
public int? BufferSize { get; set; }

sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareFileOpenReadOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ShareFileOpenReadOptions
1515
public long Position { get; set; }
1616

1717
/// <summary>
18-
/// The buffer size to use when the stream downloads parts
18+
/// The buffer size (in bytes) to use when the stream downloads parts
1919
/// of the file. Defaults to 4 MB.
2020
/// </summary>
2121
public int? BufferSize { get; set; }

sdk/storage/Azure.Storage.Files.Shares/src/ShareFileClient.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2699,7 +2699,7 @@ public virtual async Task<Stream> OpenReadAsync(
26992699
/// Defaults to the beginning of the file.
27002700
/// </param>
27012701
/// <param name="bufferSize">
2702-
/// The buffer size to use when the stream downloads parts
2702+
/// The buffer size (in bytes) to use when the stream downloads parts
27032703
/// of the file. Defaults to 1 MB.
27042704
/// </param>
27052705
/// <param name="conditions">
@@ -2749,7 +2749,7 @@ public virtual Stream OpenRead(
27492749
/// Defaults to the beginning of the file.
27502750
/// </param>
27512751
/// <param name="bufferSize">
2752-
/// The buffer size to use when the stream downloads parts
2752+
/// The buffer size (in bytes) to use when the stream downloads parts
27532753
/// of the file. Defaults to 1 MB.
27542754
/// </param>
27552755
/// <param name="cancellationToken">
@@ -2792,7 +2792,7 @@ public virtual Stream OpenRead(
27922792
/// Defaults to the beginning of the file.
27932793
/// </param>
27942794
/// <param name="bufferSize">
2795-
/// The buffer size to use when the stream downloads parts
2795+
/// The buffer size (in bytes) to use when the stream downloads parts
27962796
/// of the file. Defaults to 1 MB.
27972797
/// </param>
27982798
/// <param name="conditions">
@@ -2842,7 +2842,7 @@ public virtual async Task<Stream> OpenReadAsync(
28422842
/// Defaults to the beginning of the file.
28432843
/// </param>
28442844
/// <param name="bufferSize">
2845-
/// The buffer size to use when the stream downloads parts
2845+
/// The buffer size (in bytes) to use when the stream downloads parts
28462846
/// of the file. Defaults to 1 MB.
28472847
/// </param>
28482848
/// <param name="cancellationToken">
@@ -2885,7 +2885,7 @@ public virtual async Task<Stream> OpenReadAsync(
28852885
/// Defaults to the beginning of the file.
28862886
/// </param>
28872887
/// <param name="bufferSize">
2888-
/// The buffer size to use when the stream downloads parts
2888+
/// The buffer size (in bytes) to use when the stream downloads parts
28892889
/// of the file. Defaults to 1 MB.
28902890
/// </param>
28912891
/// <param name="conditions">

0 commit comments

Comments
 (0)