Skip to content

Commit 0a7f4d6

Browse files
authored
initial commit (Azure#48436)
1 parent 92261b9 commit 0a7f4d6

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2879,6 +2879,10 @@ internal async Task<Response> StagedDownloadAsync(
28792879
/// Returns a stream that will download the blob as the stream
28802880
/// is read from.
28812881
/// </returns>
2882+
/// <remarks>
2883+
/// A <see cref="RequestFailedException"/> will be thrown if
2884+
/// a failure occurs.
2885+
/// </remarks>
28822886
#pragma warning disable AZC0015 // Unexpected client method return type.
28832887
public virtual Stream OpenRead(
28842888
#pragma warning restore AZC0015 // Unexpected client method return type.
@@ -2908,6 +2912,10 @@ public virtual Stream OpenRead(
29082912
/// Returns a stream that will download the blob as the stream
29092913
/// is read from.
29102914
/// </returns>
2915+
/// <remarks>
2916+
/// A <see cref="RequestFailedException"/> will be thrown if
2917+
/// a failure occurs.
2918+
/// </remarks>
29112919
#pragma warning disable AZC0015 // Unexpected client method return type.
29122920
public virtual async Task<Stream> OpenReadAsync(
29132921
#pragma warning restore AZC0015 // Unexpected client method return type.
@@ -2946,6 +2954,10 @@ public virtual async Task<Stream> OpenReadAsync(
29462954
/// Returns a stream that will download the blob as the stream
29472955
/// is read from.
29482956
/// </returns>
2957+
/// <remarks>
2958+
/// A <see cref="RequestFailedException"/> will be thrown if
2959+
/// a failure occurs.
2960+
/// </remarks>
29492961
[EditorBrowsable(EditorBrowsableState.Never)]
29502962
#pragma warning disable AZC0015 // Unexpected client method return type.
29512963
public virtual Stream OpenRead(
@@ -2986,6 +2998,10 @@ public virtual Stream OpenRead(
29862998
/// Returns a stream that will download the blob as the stream
29872999
/// is read from.
29883000
/// </returns>
3001+
/// <remarks>
3002+
/// A <see cref="RequestFailedException"/> will be thrown if
3003+
/// a failure occurs.
3004+
/// </remarks>
29893005
[EditorBrowsable(EditorBrowsableState.Never)]
29903006
#pragma warning disable AZC0015 // Unexpected client method return type.
29913007
public virtual Stream OpenRead(
@@ -3027,6 +3043,10 @@ public virtual Stream OpenRead(
30273043
/// Returns a stream that will download the blob as the stream
30283044
/// is read from.
30293045
/// </returns>
3046+
/// <remarks>
3047+
/// A <see cref="RequestFailedException"/> will be thrown if
3048+
/// a failure occurs.
3049+
/// </remarks>
30303050
[EditorBrowsable(EditorBrowsableState.Never)]
30313051
#pragma warning disable AZC0015 // Unexpected client method return type.
30323052
public virtual async Task<Stream> OpenReadAsync(
@@ -3067,6 +3087,10 @@ public virtual async Task<Stream> OpenReadAsync(
30673087
/// Returns a stream that will download the blob as the stream
30683088
/// is read from.
30693089
/// </returns>
3090+
/// <remarks>
3091+
/// A <see cref="RequestFailedException"/> will be thrown if
3092+
/// a failure occurs.
3093+
/// </remarks>
30703094
[EditorBrowsable(EditorBrowsableState.Never)]
30713095
#pragma warning disable AZC0015 // Unexpected client method return type.
30723096
public virtual async Task<Stream> OpenReadAsync(
@@ -3117,6 +3141,10 @@ public virtual async Task<Stream> OpenReadAsync(
31173141
/// Returns a stream that will download the blob as the stream
31183142
/// is read from.
31193143
/// </returns>
3144+
/// <remarks>
3145+
/// A <see cref="RequestFailedException"/> will be thrown if
3146+
/// a failure occurs.
3147+
/// </remarks>
31203148
#pragma warning disable CS1998 // Async method lacks 'await' operators and will run synchronously
31213149
internal async Task<Stream> OpenReadInternal(
31223150
#pragma warning restore CS1998 // Async method lacks 'await' operators and will run synchronously

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5392,6 +5392,8 @@ public virtual async Task<Response<FileDownloadInfo>> QueryAsync(
53925392
/// Returns a stream that will download the file as the stream
53935393
/// is read from.
53945394
/// </returns>
5395+
/// A <see cref="RequestFailedException"/> will be thrown if
5396+
/// a failure occurs.
53955397
#pragma warning disable AZC0015 // Unexpected client method return type.
53965398
public virtual Stream OpenRead(
53975399
#pragma warning restore AZC0015 // Unexpected client method return type.
@@ -5432,6 +5434,8 @@ public virtual Stream OpenRead(
54325434
/// Returns a stream that will download the file as the stream
54335435
/// is read from.
54345436
/// </returns>
5437+
/// A <see cref="RequestFailedException"/> will be thrown if
5438+
/// a failure occurs.
54355439
#pragma warning disable AZC0015 // Unexpected client method return type.
54365440
public virtual async Task<Stream> OpenReadAsync(
54375441
#pragma warning restore AZC0015 // Unexpected client method return type.
@@ -5481,6 +5485,8 @@ public virtual async Task<Stream> OpenReadAsync(
54815485
/// Returns a stream that will download the file as the stream
54825486
/// is read from.
54835487
/// </returns>
5488+
/// A <see cref="RequestFailedException"/> will be thrown if
5489+
/// a failure occurs.
54845490
[EditorBrowsable(EditorBrowsableState.Never)]
54855491
#pragma warning disable AZC0015 // Unexpected client method return type.
54865492
public virtual Stream OpenRead(
@@ -5534,6 +5540,8 @@ public virtual Stream OpenRead(
55345540
/// Returns a stream that will download the file as the stream
55355541
/// is read from.
55365542
/// </returns>
5543+
/// A <see cref="RequestFailedException"/> will be thrown if
5544+
/// a failure occurs.
55375545
[EditorBrowsable(EditorBrowsableState.Never)]
55385546
#pragma warning disable AZC0015 // Unexpected client method return type.
55395547
public virtual Stream OpenRead(
@@ -5588,6 +5596,10 @@ public virtual Stream OpenRead(
55885596
/// Returns a stream that will download the file as the stream
55895597
/// is read from.
55905598
/// </returns>
5599+
/// <remarks>
5600+
/// A <see cref="RequestFailedException"/> will be thrown if
5601+
/// a failure occurs.
5602+
/// </remarks>
55915603
[EditorBrowsable(EditorBrowsableState.Never)]
55925604
#pragma warning disable AZC0015 // Unexpected client method return type.
55935605
public virtual async Task<Stream> OpenReadAsync(
@@ -5641,6 +5653,8 @@ public virtual async Task<Stream> OpenReadAsync(
56415653
/// Returns a stream that will download the file as the stream
56425654
/// is read from.
56435655
/// </returns>
5656+
/// A <see cref="RequestFailedException"/> will be thrown if
5657+
/// a failure occurs.
56445658
[EditorBrowsable(EditorBrowsableState.Never)]
56455659
#pragma warning disable AZC0015 // Unexpected client method return type.
56465660
public virtual async Task<Stream> OpenReadAsync(

0 commit comments

Comments
 (0)