You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 1, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: Lib/ClassLibraryCommon/Blob/BlobReadStream.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,9 @@ internal sealed class BlobReadStream : BlobReadStreamBase
31
31
/// Initializes a new instance of the BlobReadStream class.
32
32
/// </summary>
33
33
/// <param name="blob">Blob reference to read from</param>
34
-
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
35
-
/// <param name="options">An object that specifies additional options for the request.</param>
36
-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
34
+
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the condition that must be met in order for the request to proceed. If <c>null</c>, no condition is used.</param>
35
+
/// <param name="options">A <see cref="BlobRequestOptions"/> object that specifies additional options for the request.</param>
36
+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
Copy file name to clipboardExpand all lines: Lib/ClassLibraryCommon/Blob/BlobWriteStream.cs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ internal sealed class BlobWriteStream : BlobWriteStreamBase
37
37
/// Initializes a new instance of the BlobWriteStream class for a block blob.
38
38
/// </summary>
39
39
/// <param name="blockBlob">Blob reference to write to.</param>
40
-
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
41
-
/// <param name="options">An object that specifies additional options for the request.</param>
42
-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
40
+
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the condition that must be met in order for the request to proceed. If <c>null</c>, no condition is used.</param>
41
+
/// <param name="options">A <see cref="BlobRequestOptions"/> object that specifies additional options for the request.</param>
42
+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
/// <param name="pageBlob">Blob reference to write to.</param>
52
52
/// <param name="pageBlobSize">Size of the page blob.</param>
53
53
/// <param name="createNew">Use <c>true</c> if the page blob is newly created, <c>false</c> otherwise.</param>
54
-
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
55
-
/// <param name="options">An object that specifies additional options for the request.</param>
56
-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
54
+
/// <param name="accessCondition">An <see cref="AccessCondition"/> object that represents the condition that must be met in order for the request to proceed. If <c>null</c>, no condition is used.</param>
55
+
/// <param name="options">A <see cref="BlobRequestOptions"/> object that specifies additional options for the request.</param>
56
+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
0 commit comments