Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Azure Storage Client Library 2.1.0.2 #260

Merged
merged 6 commits into from
Oct 7, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ internal abstract class BlobReadStreamBase : Stream
/// </summary>
/// <param name="blob">Blob reference to read from</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
protected BlobReadStreamBase(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
{
Expand Down Expand Up @@ -203,11 +203,10 @@ public override void Write(byte[] buffer, int offset, int count)
}

/// <summary>
/// This operation is not supported in BlobReadStreamBase.
/// This operation is a no-op in BlobReadStreamBase.
/// </summary>
public override void Flush()
{
throw new NotSupportedException();
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ internal abstract class BlobWriteStreamBase :
/// </summary>
/// <param name="serviceClient">The service client.</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext" /> object for tracking the current operation.</param>
private BlobWriteStreamBase(CloudBlobClient serviceClient, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: base()
Expand All @@ -85,7 +85,7 @@ private BlobWriteStreamBase(CloudBlobClient serviceClient, AccessCondition acces
/// </summary>
/// <param name="blockBlob">Blob reference to write to.</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
protected BlobWriteStreamBase(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: this(blockBlob.ServiceClient, accessCondition, options, operationContext)
Expand All @@ -103,7 +103,7 @@ protected BlobWriteStreamBase(CloudBlockBlob blockBlob, AccessCondition accessCo
/// <param name="pageBlobSize">Size of the page blob.</param>
/// <param name="createNew">Use <c>true</c> if the page blob is newly created, <c>false</c> otherwise.</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
protected BlobWriteStreamBase(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: this(pageBlob.ServiceClient, accessCondition, options, operationContext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ internal CloudQueueClient(bool? usePathStyleUris, Uri baseUri, StorageCredential
public StorageCredentials Credentials { get; private set; }

/// <summary>
/// Gets the base URI for the queue service client.
/// Gets the base URI for the Queue service client.
/// </summary>
/// <value>The base URI used to construct the queue service client.</value>
/// <value>The base URI used to construct the Queue service client.</value>
public Uri BaseUri { get; private set; }

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ static HeaderConstants()
/// <summary>
/// Specifies the value to use for UserAgent header.
/// </summary>
public const string UserAgentProductVersion = "2.1.0";
public const string UserAgentProductVersion = "2.1.0.2";

/// <summary>
/// Master Windows Azure Storage header prefix.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ static TableQueryableExtensions()
/// Specifies a set of <see cref="TableRequestOptions"/> on the query.
/// </summary>
/// <typeparam name="TElement">The entity type of the query.</typeparam>
/// <param name="query">The query.</param>
/// <param name="options">The options to specify on the request.</param>
/// <param name="query">A query that implements <see cref="IQueryable{TElement}"/>.</param>
/// <param name="options">A <see cref="TableRequestOptions"/> object that specifies execution options, such as retry policy and timeout settings, for the operation.</param>
/// <returns>A <see cref="TableQuery"/> object with the specified request options set.</returns>
/// <exception cref="System.NotSupportedException"></exception>
public static TableQuery<TElement> WithOptions<TElement>(this IQueryable<TElement> query, TableRequestOptions options)
Expand All @@ -73,8 +73,8 @@ public static TableQuery<TElement> WithOptions<TElement>(this IQueryable<TElemen
/// Specifies an <see cref="OperationContext"/> for the query.
/// </summary>
/// <typeparam name="TElement">The entity type of the query.</typeparam>
/// <param name="query">The query.</param>
/// <param name="operationContext">The operation context.</param>
/// <param name="query">A query that implements <see cref="IQueryable{TElement}"/>.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
/// <returns>A <see cref="TableQuery"/> object with the specified operation context.</returns>
/// <exception cref="System.NotSupportedException"></exception>
public static TableQuery<TElement> WithContext<TElement>(this IQueryable<TElement> query, OperationContext operationContext)
Expand All @@ -97,8 +97,8 @@ public static TableQuery<TElement> WithContext<TElement>(this IQueryable<TElemen
/// </summary>
/// <typeparam name="TElement">The entity type of the query.</typeparam>
/// <typeparam name="TResolved">The type of the resolver.</typeparam>
/// <param name="query">The query.</param>
/// <param name="resolver">The resolver.</param>
/// <param name="query">A query that implements <see cref="IQueryable{TElement}"/>.</param>
/// <param name="resolver">The entity resolver, of type <see cref="EntityResolver{TResolved}"/>.</param>
/// <returns>A <see cref="TableQuery"/> with the specified resolver.</returns>
/// <exception cref="System.NotSupportedException"></exception>
public static TableQuery<TResolved> Resolve<TElement, TResolved>(this IQueryable<TElement> query, EntityResolver<TResolved> resolver)
Expand All @@ -120,7 +120,7 @@ public static TableQuery<TResolved> Resolve<TElement, TResolved>(this IQueryable
/// Specifies that a query be returned as a <see cref="TableQuery"/> object.
/// </summary>
/// <typeparam name="TElement">The entity type of the query.</typeparam>
/// <param name="query">The query.</param>
/// <param name="query">A query that implements <see cref="IQueryable{TElement}"/>.</param>
/// <returns>An object of type <see cref="TableQuery"/>.</returns>
/// <exception cref="System.NotSupportedException"></exception>
public static TableQuery<TElement> AsTableQuery<TElement>(this IQueryable<TElement> query)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.1")]
[assembly: AssemblyVersion("2.1.0.2")]
[assembly: AssemblyFileVersion("2.1.0.2")]

#if SIGN
[assembly: InternalsVisibleTo(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WindowsAzure.Storage</id>
<version>2.1.0.0</version>
<version>2.1.0.2</version>
<title>Windows Azure Storage</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ internal sealed class BlobReadStream : BlobReadStreamBase
/// </summary>
/// <param name="blob">Blob reference to read from</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
internal BlobReadStream(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: base(blob, accessCondition, options, operationContext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ internal sealed class BlobWriteStream : BlobWriteStreamBase
/// </summary>
/// <param name="blockBlob">Blob reference to write to.</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: base(blockBlob, accessCondition, options, operationContext)
Expand All @@ -52,7 +52,7 @@ internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessConditi
/// <param name="pageBlobSize">Size of the page blob.</param>
/// <param name="createNew">Use <c>true</c> if the page blob is newly created, <c>false</c> otherwise.</param>
/// <param name="accessCondition">An object that represents the access conditions for the blob. If null, no condition is used.</param>
/// <param name="options">An object that specifies any additional options for the request.</param>
/// <param name="options">An object that specifies additional options for the request.</param>
/// <param name="operationContext">An <see cref="OperationContext"/> object for tracking the current operation.</param>
internal BlobWriteStream(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext)
: base(pageBlob, pageBlobSize, createNew, accessCondition, options, operationContext)
Expand Down
Loading