Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 48f8519

Browse files
author
Joe Giardino
committed
Merge pull request #35 from pemari-msft/master
Azure Storage Client Library - 3.1.0
2 parents 3c5a6ff + 2738cfd commit 48f8519

File tree

131 files changed

+5079
-4324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+5079
-4324
lines changed

Lib/ClassLibraryCommon/Auth/Protocol/IAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public interface IAuthenticationHandler
2828
/// Signs the specified HTTP request so it can be authenticated by the Windows Azure storage services.
2929
/// </summary>
3030
/// <param name="request">The HTTP request to sign.</param>
31-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
31+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
3232
void SignRequest(HttpWebRequest request, OperationContext operationContext);
3333
}
3434
}

Lib/ClassLibraryCommon/Auth/Protocol/NoOpAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public NoOpAuthenticationHandler()
3535
/// Signs the specified HTTP request with no authentication information.
3636
/// </summary>
3737
/// <param name="request">The HTTP request to sign.</param>
38-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
38+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
3939
public void SignRequest(HttpWebRequest request, OperationContext operationContext)
4040
{
4141
// no op

Lib/ClassLibraryCommon/Auth/Protocol/SharedKeyAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public SharedKeyAuthenticationHandler(ICanonicalizer canonicalizer, StorageCrede
5353
/// Signs the specified HTTP request with a shared key.
5454
/// </summary>
5555
/// <param name="request">The HTTP request to sign.</param>
56-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
56+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
5757
public void SignRequest(HttpWebRequest request, OperationContext operationContext)
5858
{
5959
CommonUtility.AssertNotNull("request", request);

Lib/ClassLibraryCommon/Auth/Protocol/SharedKeyLiteAuthenticationHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public SharedKeyLiteAuthenticationHandler(ICanonicalizer canonicalizer, StorageC
4444
/// Signs the specified HTTP request with a shared key.
4545
/// </summary>
4646
/// <param name="request">The HTTP request to sign.</param>
47-
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
47+
/// <param name="operationContext">An <see cref="OperationContext"/> object that represents the context for the current operation.</param>
4848
public void SignRequest(HttpWebRequest request, OperationContext operationContext)
4949
{
5050
this.authenticationHandler.SignRequest(request, operationContext);

Lib/ClassLibraryCommon/Blob/BlobReadStream.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ internal sealed class BlobReadStream : BlobReadStreamBase
3131
/// Initializes a new instance of the BlobReadStream class.
3232
/// </summary>
3333
/// <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>
3737
internal BlobReadStream(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
3838
: base(blob, accessCondition, options, operationContext)
3939
{

Lib/ClassLibraryCommon/Blob/BlobWriteStream.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ internal sealed class BlobWriteStream : BlobWriteStreamBase
3737
/// Initializes a new instance of the BlobWriteStream class for a block blob.
3838
/// </summary>
3939
/// <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>
4343
internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
4444
: base(blockBlob, accessCondition, options, operationContext)
4545
{
@@ -51,9 +51,9 @@ internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessConditi
5151
/// <param name="pageBlob">Blob reference to write to.</param>
5252
/// <param name="pageBlobSize">Size of the page blob.</param>
5353
/// <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>
5757
internal BlobWriteStream(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
5858
: base(pageBlob, pageBlobSize, createNew, accessCondition, options, operationContext)
5959
{
@@ -279,10 +279,10 @@ public override void EndFlush(IAsyncResult asyncResult)
279279

280280
#if WINDOWS_PHONE
281281
/// <summary>
282-
/// Returns a task that performs an asynchronous flush operation.
282+
/// Initiates an asynchronous operation that performs an asynchronous flush operation.
283283
/// </summary>
284284
/// <param name="cancellationToken">A <see cref="CancellationToken"/> to observe while waiting for a task to complete.</param>
285-
/// <returns>A <see cref="Task"/> object that represents the current operation.</returns>
285+
/// <returns>A <see cref="Task"/> object that represents the asynchronous operation.</returns>
286286
public override Task FlushAsync(CancellationToken cancellationToken)
287287
{
288288
return AsyncExtensions.TaskFromVoidApm(this.BeginFlush, this.EndFlush, cancellationToken);

0 commit comments

Comments
 (0)