diff --git a/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobReadStreamBase.cs b/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobReadStreamBase.cs index a546d4a171d4..23bbab9f826d 100644 --- a/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobReadStreamBase.cs +++ b/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobReadStreamBase.cs @@ -44,7 +44,7 @@ internal abstract class BlobReadStreamBase : Stream /// /// Blob reference to read from /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. protected BlobReadStreamBase(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) { @@ -203,11 +203,10 @@ public override void Write(byte[] buffer, int offset, int count) } /// - /// This operation is not supported in BlobReadStreamBase. + /// This operation is a no-op in BlobReadStreamBase. /// public override void Flush() { - throw new NotSupportedException(); } /// diff --git a/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobWriteStreamBase.cs b/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobWriteStreamBase.cs index 08bf792222ff..59c568375903 100644 --- a/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobWriteStreamBase.cs +++ b/microsoft-azure-api/Services/Storage/Lib/Common/Blob/BlobWriteStreamBase.cs @@ -61,7 +61,7 @@ internal abstract class BlobWriteStreamBase : /// /// The service client. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. private BlobWriteStreamBase(CloudBlobClient serviceClient, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base() @@ -85,7 +85,7 @@ private BlobWriteStreamBase(CloudBlobClient serviceClient, AccessCondition acces /// /// Blob reference to write to. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. protected BlobWriteStreamBase(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : this(blockBlob.ServiceClient, accessCondition, options, operationContext) @@ -103,7 +103,7 @@ protected BlobWriteStreamBase(CloudBlockBlob blockBlob, AccessCondition accessCo /// Size of the page blob. /// Use true if the page blob is newly created, false otherwise. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. protected BlobWriteStreamBase(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : this(pageBlob.ServiceClient, accessCondition, options, operationContext) diff --git a/microsoft-azure-api/Services/Storage/Lib/Common/Queue/CloudQueueClient.Common.cs b/microsoft-azure-api/Services/Storage/Lib/Common/Queue/CloudQueueClient.Common.cs index e6874c7b3f75..9429c186b5e1 100644 --- a/microsoft-azure-api/Services/Storage/Lib/Common/Queue/CloudQueueClient.Common.cs +++ b/microsoft-azure-api/Services/Storage/Lib/Common/Queue/CloudQueueClient.Common.cs @@ -121,9 +121,9 @@ internal CloudQueueClient(bool? usePathStyleUris, Uri baseUri, StorageCredential public StorageCredentials Credentials { get; private set; } /// - /// Gets the base URI for the queue service client. + /// Gets the base URI for the Queue service client. /// - /// The base URI used to construct the queue service client. + /// The base URI used to construct the Queue service client. public Uri BaseUri { get; private set; } /// diff --git a/microsoft-azure-api/Services/Storage/Lib/Common/Shared/Protocol/Constants.cs b/microsoft-azure-api/Services/Storage/Lib/Common/Shared/Protocol/Constants.cs index e12edc9d9cba..7ef90f1a7d9a 100644 --- a/microsoft-azure-api/Services/Storage/Lib/Common/Shared/Protocol/Constants.cs +++ b/microsoft-azure-api/Services/Storage/Lib/Common/Shared/Protocol/Constants.cs @@ -609,7 +609,7 @@ static HeaderConstants() /// /// Specifies the value to use for UserAgent header. /// - public const string UserAgentProductVersion = "2.1.0"; + public const string UserAgentProductVersion = "2.1.0.2"; /// /// Master Windows Azure Storage header prefix. diff --git a/microsoft-azure-api/Services/Storage/Lib/Common/Table/Queryable/TableQueryableExtensions.cs b/microsoft-azure-api/Services/Storage/Lib/Common/Table/Queryable/TableQueryableExtensions.cs index 3869a56652fa..b18ddb78d6c8 100644 --- a/microsoft-azure-api/Services/Storage/Lib/Common/Table/Queryable/TableQueryableExtensions.cs +++ b/microsoft-azure-api/Services/Storage/Lib/Common/Table/Queryable/TableQueryableExtensions.cs @@ -50,8 +50,8 @@ static TableQueryableExtensions() /// Specifies a set of on the query. /// /// The entity type of the query. - /// The query. - /// The options to specify on the request. + /// A query that implements . + /// A object that specifies execution options, such as retry policy and timeout settings, for the operation. /// A object with the specified request options set. /// public static TableQuery WithOptions(this IQueryable query, TableRequestOptions options) @@ -73,8 +73,8 @@ public static TableQuery WithOptions(this IQueryable for the query. /// /// The entity type of the query. - /// The query. - /// The operation context. + /// A query that implements . + /// An object for tracking the current operation. /// A object with the specified operation context. /// public static TableQuery WithContext(this IQueryable query, OperationContext operationContext) @@ -97,8 +97,8 @@ public static TableQuery WithContext(this IQueryable /// The entity type of the query. /// The type of the resolver. - /// The query. - /// The resolver. + /// A query that implements . + /// The entity resolver, of type . /// A with the specified resolver. /// public static TableQuery Resolve(this IQueryable query, EntityResolver resolver) @@ -120,7 +120,7 @@ public static TableQuery Resolve(this IQueryable /// Specifies that a query be returned as a object. /// /// The entity type of the query. - /// The query. + /// A query that implements . /// An object of type . /// public static TableQuery AsTableQuery(this IQueryable query) diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNet40/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Lib/DotNet40/Properties/AssemblyInfo.cs index a4252ae76c0c..9a2d92cbd01a 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNet40/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNet40/Properties/AssemblyInfo.cs @@ -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( diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNet40/WindowsAzure.Storage.nuspec b/microsoft-azure-api/Services/Storage/Lib/DotNet40/WindowsAzure.Storage.nuspec index 386549911907..78a239b1ef7a 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNet40/WindowsAzure.Storage.nuspec +++ b/microsoft-azure-api/Services/Storage/Lib/DotNet40/WindowsAzure.Storage.nuspec @@ -2,7 +2,7 @@ WindowsAzure.Storage - 2.1.0.0 + 2.1.0.2 Windows Azure Storage Microsoft Microsoft diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobReadStream.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobReadStream.cs index 2de1653598c4..6076eaef90d9 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobReadStream.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobReadStream.cs @@ -32,7 +32,7 @@ internal sealed class BlobReadStream : BlobReadStreamBase /// /// Blob reference to read from /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. internal BlobReadStream(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(blob, accessCondition, options, operationContext) diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobWriteStream.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobWriteStream.cs index 4891775fe26a..12c67fd732a4 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobWriteStream.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/BlobWriteStream.cs @@ -38,7 +38,7 @@ internal sealed class BlobWriteStream : BlobWriteStreamBase /// /// Blob reference to write to. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(blockBlob, accessCondition, options, operationContext) @@ -52,7 +52,7 @@ internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessConditi /// Size of the page blob. /// Use true if the page blob is newly created, false otherwise. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object for tracking the current operation. internal BlobWriteStream(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(pageBlob, pageBlobSize, createNew, accessCondition, options, operationContext) diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobClient.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobClient.cs index fe61a2127455..803fd9186b88 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobClient.cs @@ -210,7 +210,7 @@ public ICancellableAsyncResult BeginListContainersSegmented(string prefix, BlobC /// A non-negative integer value that indicates the maximum number of results to be returned /// in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -295,7 +295,7 @@ public Task ListContainersSegmentedAsync(string prefix, /// A non-negative integer value that indicates the maximum number of results to be returned /// in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -312,7 +312,7 @@ public Task ListContainersSegmentedAsync(string prefix, /// A non-negative integer value that indicates the maximum number of results to be returned /// in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -330,7 +330,7 @@ public Task ListContainersSegmentedAsync(string prefix, /// The blob name prefix. /// Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory. /// A enumeration describing which items to include in the listing. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of objects that implement and are retrieved lazily. [DoesServiceRequest] @@ -367,7 +367,7 @@ public BlobResultSegment ListBlobsSegmented(string prefix, BlobContinuationToken /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . [DoesServiceRequest] @@ -407,7 +407,7 @@ public ICancellableAsyncResult BeginListBlobsSegmented(string prefix, BlobContin /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -501,7 +501,7 @@ public Task ListBlobsSegmentedAsync(string prefix, BlobContin /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -520,7 +520,7 @@ public Task ListBlobsSegmentedAsync(string prefix, bool useFl /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -533,11 +533,11 @@ public Task ListBlobsSegmentedAsync(string prefix, bool useFl #if SYNC /// - /// Gets a reference to a blob in this container. + /// Gets a reference to a blob from the service. /// /// The URI of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A reference to the blob. [DoesServiceRequest] @@ -554,7 +554,7 @@ public ICloudBlob GetBlobReferenceFromServer(Uri blobUri, AccessCondition access #endif /// - /// Begins an asynchronous operation to get a reference to a blob in this container. + /// Begins an asynchronous operation to get a reference to a blob from the service. /// /// The URI of the blob. /// The callback delegate that will receive notification when the asynchronous operation completes. @@ -567,11 +567,11 @@ public ICancellableAsyncResult BeginGetBlobReferenceFromServer(Uri blobUri, Asyn } /// - /// Begins an asynchronous operation to get a reference to a blob in this container. + /// Begins an asynchronous operation to get a reference to a blob from the service. /// /// The URI of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -591,7 +591,7 @@ public ICancellableAsyncResult BeginGetBlobReferenceFromServer(Uri blobUri, Acce } /// - /// Ends an asynchronous operation to get a reference to a blob in this container. + /// Ends an asynchronous operation to get a reference to a blob from the service. /// /// An that references the pending asynchronous operation. /// A reference to the blob. @@ -602,7 +602,7 @@ public ICloudBlob EndGetBlobReferenceFromServer(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that gets a reference to a blob in this container. + /// Returns a task that gets a reference to a blob from the service. /// /// The URI of the blob. /// A object that represents the current operation. @@ -613,7 +613,7 @@ public Task GetBlobReferenceFromServerAsync(Uri blobUri) } /// - /// Returns a task that gets a reference to a blob in this container. + /// Returns a task that gets a reference to a blob from the service. /// /// The URI of the blob. /// A to observe while waiting for a task to complete. @@ -625,11 +625,11 @@ public Task GetBlobReferenceFromServerAsync(Uri blobUri, Cancellatio } /// - /// Returns a task that gets a reference to a blob in this container. + /// Returns a object that gets a reference to a blob from the service. /// /// The URI of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -639,11 +639,11 @@ public Task GetBlobReferenceFromServerAsync(Uri blobUri, AccessCondi } /// - /// Returns a task that gets a reference to a blob in this container. + /// Returns a task that gets a reference to a blob from the service. /// /// The URI of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -662,7 +662,7 @@ public Task GetBlobReferenceFromServerAsync(Uri blobUri, AccessCondi /// The continuation token. /// A non-negative integer value that indicates the maximum number of results to be returned /// in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that lists the containers. private RESTCommand> ListContainersImpl(string prefix, ContainerListingDetails detailsIncluded, BlobContinuationToken currentToken, int? maxResults, BlobRequestOptions options) { @@ -706,7 +706,7 @@ private RESTCommand> ListContainersImpl(string /// /// The URI of the blob. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand GetBlobReferenceImpl(Uri blobUri, AccessCondition accessCondition, BlobRequestOptions options) { @@ -937,7 +937,7 @@ public Task SetServicePropertiesAsync(ServiceProperties properties, Cancellation /// Returns a task that gets the properties of the blob service. /// /// The blob service properties. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobContainer.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobContainer.cs index 277d9ff147a5..e1debc4754f5 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobContainer.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobContainer.cs @@ -41,7 +41,7 @@ public sealed partial class CloudBlobContainer /// /// Creates the container. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object /// is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] @@ -54,7 +54,7 @@ public void Create(BlobRequestOptions requestOptions = null, OperationContext op /// Creates the container and specifies the level of access to the container's data. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object /// is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] @@ -83,7 +83,7 @@ public ICancellableAsyncResult BeginCreate(AsyncCallback callback, object state) /// /// Begins an asynchronous operation to create a container. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -98,7 +98,7 @@ public ICancellableAsyncResult BeginCreate(BlobRequestOptions options, Operation /// Begins an asynchronous operation to create a container and specify the level of access to the container's data. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -150,7 +150,7 @@ public Task CreateAsync(CancellationToken cancellationToken) /// Returns a task that creates a container. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -160,10 +160,10 @@ public Task CreateAsync(BlobContainerPublicAccessType accessType, BlobRequestOpt } /// - /// Returns a task that creates a container and specify the level of access to the container's data. + /// Returns a task that creates a container and specifies the level of access to the container's data. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -177,7 +177,7 @@ public Task CreateAsync(BlobContainerPublicAccessType accessType, BlobRequestOpt /// /// Creates the container if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -190,7 +190,7 @@ public bool CreateIfNotExists(BlobRequestOptions requestOptions = null, Operatio /// Creates the container if it does not already exist and specifies whether the container or its blobs are publicly accessible. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -248,7 +248,7 @@ public ICancellableAsyncResult BeginCreateIfNotExists(AsyncCallback callback, ob /// /// Begins an asynchronous request to create the container if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -263,7 +263,7 @@ public ICancellableAsyncResult BeginCreateIfNotExists(BlobRequestOptions options /// Begins an asynchronous request to create the container if it does not already exist. /// /// An object that specifies whether data in the container may be accessed publicly and the level of access. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -410,7 +410,7 @@ public Task CreateIfNotExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that creates the container if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -422,7 +422,7 @@ public Task CreateIfNotExistsAsync(BlobRequestOptions options, OperationCo /// /// Returns a task that creates the container if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -436,7 +436,7 @@ public Task CreateIfNotExistsAsync(BlobRequestOptions options, OperationCo /// Returns a task that creates the container if it does not already exist. /// /// An object that specifies whether data in the container may be accessed publicly and the level of access. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -449,7 +449,7 @@ public Task CreateIfNotExistsAsync(BlobContainerPublicAccessType accessTyp /// Returns a task that creates the container if it does not already exist. /// /// An object that specifies whether data in the container may be accessed publicly and the level of access. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -465,7 +465,7 @@ public Task CreateIfNotExistsAsync(BlobContainerPublicAccessType accessTyp /// Deletes the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void Delete(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -494,7 +494,7 @@ public ICancellableAsyncResult BeginDelete(AsyncCallback callback, object state) /// Begins an asynchronous operation to delete a container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -546,7 +546,7 @@ public Task DeleteAsync(CancellationToken cancellationToken) /// Returns a task that deletes the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -559,7 +559,7 @@ public Task DeleteAsync(AccessCondition accessCondition, BlobRequestOptions opti /// Returns a task that deletes the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -575,7 +575,7 @@ public Task DeleteAsync(AccessCondition accessCondition, BlobRequestOptions opti /// Deletes the container if it already exists. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -633,7 +633,7 @@ public ICancellableAsyncResult BeginDeleteIfExists(AsyncCallback callback, objec /// Begins an asynchronous request to delete the container if it already exists. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -780,7 +780,7 @@ public Task DeleteIfExistsAsync(CancellationToken cancellationToken) /// Returns a task that deletes the container if it already exists. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -793,7 +793,7 @@ public Task DeleteIfExistsAsync(AccessCondition accessCondition, BlobReque /// Returns a task that deletes the container if it already exists. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -810,7 +810,7 @@ public Task DeleteIfExistsAsync(AccessCondition accessCondition, BlobReque /// /// The name of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A reference to the blob. [DoesServiceRequest] @@ -841,7 +841,7 @@ public ICancellableAsyncResult BeginGetBlobReferenceFromServer(string blobName, /// /// The name of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -894,7 +894,7 @@ public Task GetBlobReferenceFromServerAsync(string blobName, Cancell /// /// The name of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -908,7 +908,7 @@ public Task GetBlobReferenceFromServerAsync(string blobName, AccessC /// /// The name of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -926,7 +926,7 @@ public Task GetBlobReferenceFromServerAsync(string blobName, AccessC /// The blob name prefix. /// Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory. /// A enumeration describing which items to include in the listing. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of objects that implement and are retrieved lazily. [DoesServiceRequest] @@ -973,7 +973,7 @@ public BlobResultSegment ListBlobsSegmented(string prefix, BlobContinuationToken /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . [DoesServiceRequest] @@ -994,7 +994,7 @@ public BlobResultSegment ListBlobsSegmented(string prefix, bool useFlatBlobListi /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . private ResultSegment ListBlobsSegmentedCore(string prefix, bool useFlatBlobListing, BlobListingDetails blobListingDetails, int? maxResults, BlobContinuationToken currentToken, BlobRequestOptions options, OperationContext operationContext) @@ -1045,7 +1045,7 @@ public ICancellableAsyncResult BeginListBlobsSegmented(string prefix, BlobContin /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1133,7 +1133,7 @@ public Task ListBlobsSegmentedAsync(string prefix, BlobContin /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1152,7 +1152,7 @@ public Task ListBlobsSegmentedAsync(string prefix, bool useFl /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1169,7 +1169,7 @@ public Task ListBlobsSegmentedAsync(string prefix, bool useFl /// /// The permissions to apply to the container. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetPermissions(BlobContainerPermissions permissions, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1200,7 +1200,7 @@ public ICancellableAsyncResult BeginSetPermissions(BlobContainerPermissions perm /// /// The permissions to apply to the container. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1255,7 +1255,7 @@ public Task SetPermissionsAsync(BlobContainerPermissions permissions, Cancellati /// /// The permissions to apply to the container. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1269,7 +1269,7 @@ public Task SetPermissionsAsync(BlobContainerPermissions permissions, AccessCond /// /// The permissions to apply to the container. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1285,7 +1285,7 @@ public Task SetPermissionsAsync(BlobContainerPermissions permissions, AccessCond /// Gets the permissions settings for the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The container's permissions. [DoesServiceRequest] @@ -1315,7 +1315,7 @@ public ICancellableAsyncResult BeginGetPermissions(AsyncCallback callback, objec /// Begins an asynchronous request to get the permissions settings for the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1368,7 +1368,7 @@ public Task GetPermissionsAsync(CancellationToken canc /// Returns a task that gets the permissions settings for the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1381,7 +1381,7 @@ public Task GetPermissionsAsync(AccessCondition access /// Returns a task that gets the permissions settings for the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1396,7 +1396,7 @@ public Task GetPermissionsAsync(AccessCondition access /// /// Checks whether the container exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container exists. [DoesServiceRequest] @@ -1424,7 +1424,7 @@ public ICancellableAsyncResult BeginExists(AsyncCallback callback, object state) /// /// Begins an asynchronous request to check whether the container exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1476,7 +1476,7 @@ public Task ExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that checks whether the container exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1488,7 +1488,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// /// Returns a task that checks whether the container exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1504,7 +1504,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// Retrieves the container's attributes. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void FetchAttributes(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1533,7 +1533,7 @@ public ICancellableAsyncResult BeginFetchAttributes(AsyncCallback callback, obje /// Begins an asynchronous operation to retrieve the container's attributes. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1585,7 +1585,7 @@ public Task FetchAttributesAsync(CancellationToken cancellationToken) /// Returns a task that retrieves the container's attributes. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1598,7 +1598,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// Returns a task that retrieves the container's attributes. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1614,7 +1614,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// Sets the container's user-defined metadata. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetMetadata(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1643,7 +1643,7 @@ public ICancellableAsyncResult BeginSetMetadata(AsyncCallback callback, object s /// Begins an asynchronous operation to set user-defined metadata on the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1695,7 +1695,7 @@ public Task SetMetadataAsync(CancellationToken cancellationToken) /// Returns a task that sets container's user-defined metadata. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1708,7 +1708,7 @@ public Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that sets container's user-defined metadata. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1831,7 +1831,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1848,7 +1848,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1948,7 +1948,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, CancellationToken c /// Returns a task that renews a lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1961,7 +1961,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that renews a lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2068,7 +2068,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2082,7 +2082,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2182,7 +2182,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, CancellationToken /// Returns a task that releases the lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2195,7 +2195,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, BlobRequestOption /// Returns a task that releases the lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2312,7 +2312,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, CancellationToken c /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2328,7 +2328,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition acc /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2494,7 +2494,7 @@ internal RESTCommand BreakLeaseImpl(TimeSpan? breakPeriod, AccessCondi /// /// Implementation for the Create method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that specifies whether data in the container may be accessed publicly and the level of access. /// A that creates the container. private RESTCommand CreateContainerImpl(BlobRequestOptions options, BlobContainerPublicAccessType accessType) @@ -2520,7 +2520,7 @@ private RESTCommand CreateContainerImpl(BlobRequestOptions options, Bl /// Implementation for the Delete method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the container. private RESTCommand DeleteContainerImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -2538,7 +2538,7 @@ private RESTCommand DeleteContainerImpl(AccessCondition accessConditio /// Implementation for the FetchAttributes method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand FetchAttributesImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -2561,7 +2561,7 @@ private RESTCommand FetchAttributesImpl(AccessCondition accessConditio /// /// Implementation for the Exists method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that checks existence. private RESTCommand ExistsImpl(BlobRequestOptions options) { @@ -2590,7 +2590,7 @@ private RESTCommand ExistsImpl(BlobRequestOptions options) /// Implementation for the SetMetadata method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand SetMetadataImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -2615,7 +2615,7 @@ private RESTCommand SetMetadataImpl(AccessCondition accessCondition, B /// /// The permissions to set. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand SetPermissionsImpl(BlobContainerPermissions acl, AccessCondition accessCondition, BlobRequestOptions options) { @@ -2644,7 +2644,7 @@ private RESTCommand SetPermissionsImpl(BlobContainerPermissions acl, A /// Implementation for the GetPermissions method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetPermissionsImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -2717,7 +2717,7 @@ private IListBlobItem SelectListBlobItem(IListBlobEntry protocolItem) /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory. /// A enumeration describing which items to include in the listing. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A continuation token returned by a previous listing operation. /// A that lists the blobs. private RESTCommand> ListBlobsImpl(string prefix, int? maxResults, bool useFlatBlobListing, BlobListingDetails blobListingDetails, BlobRequestOptions options, BlobContinuationToken currentToken) diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobDirectory.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobDirectory.cs index 24f116a2c35e..bbda6e590239 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobDirectory.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobDirectory.cs @@ -35,7 +35,7 @@ public sealed partial class CloudBlobDirectory /// /// Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory. /// A enumeration describing which items to include in the listing. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of objects that implement and are retrieved lazily. [DoesServiceRequest] @@ -65,7 +65,7 @@ public BlobResultSegment ListBlobsSegmented(BlobContinuationToken currentToken) /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . [DoesServiceRequest] @@ -98,7 +98,7 @@ public ICancellableAsyncResult BeginListBlobsSegmented(BlobContinuationToken cur /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -155,7 +155,7 @@ public Task ListBlobsSegmentedAsync(BlobContinuationToken cur /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -173,7 +173,7 @@ public Task ListBlobsSegmentedAsync(bool useFlatBlobListing, /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobSharedImpl.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobSharedImpl.cs index 9767a6dce880..bc452aaaa45d 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobSharedImpl.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlobSharedImpl.cs @@ -61,7 +61,7 @@ internal static void BlobOutputStreamCommitCallback(IAsyncResult result) /// The offset. /// The length. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that gets the stream. /// @@ -160,7 +160,7 @@ internal static RESTCommand GetBlobImpl(ICloudBlob blob, BlobAttribute /// The blob. /// The attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that fetches the attributes. /// @@ -186,7 +186,7 @@ internal static RESTCommand FetchAttributesImpl(ICloudBlob blob, BlobA /// /// The blob. /// The attributes. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that checks existence. /// @@ -218,7 +218,7 @@ internal static RESTCommand ExistsImpl(ICloudBlob blob, BlobAttributes att /// The blob. /// The attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that sets the metadata. /// @@ -246,7 +246,7 @@ internal static RESTCommand SetMetadataImpl(ICloudBlob blob, BlobAttri /// The blob. /// The attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that sets the properties. /// @@ -275,7 +275,7 @@ internal static RESTCommand SetPropertiesImpl(ICloudBlob blob, BlobAtt /// The attributes. /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that deletes the blob. /// @@ -301,7 +301,7 @@ internal static RESTCommand DeleteBlobImpl(ICloudBlob blob, BlobAttrib /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A implementing the acquire lease operation. /// @@ -334,7 +334,7 @@ internal static RESTCommand AcquireLeaseImpl(ICloudBlob blob, BlobAttrib /// The blob. /// The attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A implementing the renew lease operation. /// @@ -364,7 +364,7 @@ internal static RESTCommand RenewLeaseImpl(ICloudBlob blob, BlobAttrib /// The attributes. /// The proposed new lease ID. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A implementing the change lease ID operation. /// @@ -398,7 +398,7 @@ internal static RESTCommand ChangeLeaseImpl(ICloudBlob blob, BlobAttribu /// The blob. /// The attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A implementing the release lease operation. /// @@ -429,7 +429,7 @@ internal static RESTCommand ReleaseLeaseImpl(ICloudBlob blob, BlobAttr /// The amount of time to allow the lease to remain, rounded down to seconds. /// If null, the break period is the remainder of the current lease, or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A implementing the break lease operation. /// @@ -472,7 +472,7 @@ internal static RESTCommand BreakLeaseImpl(ICloudBlob blob, BlobAttrib /// The URI of the source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that starts to copy the blob. /// @@ -510,7 +510,7 @@ internal static RESTCommand StartCopyFromBlobImpl(ICloudBlob blob, BlobA /// The attributes. /// The copy ID of the copy operation to abort. /// An object that represents the access conditions for the operation. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// /// A that aborts the copy. /// diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlockBlob.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlockBlob.cs index c4f09d0f953a..2249d0083176 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlockBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudBlockBlob.cs @@ -42,7 +42,7 @@ public sealed partial class CloudBlockBlob : ICloudBlob /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. /// On the object returned by this method, the method must be called exactly once for every call. Failing to end a read process before beginning another read can cause unknown behavior. @@ -72,7 +72,7 @@ public ICancellableAsyncResult BeginOpenRead(AsyncCallback callback, object stat /// Begins an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -147,7 +147,7 @@ public Task OpenReadAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -160,7 +160,7 @@ public Task OpenReadAsync(AccessCondition accessCondition, BlobRequestOp /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -176,7 +176,7 @@ public Task OpenReadAsync(AccessCondition accessCondition, BlobRequestOp /// Opens a stream for writing to the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for writing to the blob. public CloudBlobStream OpenWrite(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -226,7 +226,7 @@ public ICancellableAsyncResult BeginOpenWrite(AsyncCallback callback, object sta /// Begins an asynchronous operation to open a stream for writing to the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -327,7 +327,7 @@ public Task OpenWriteAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to open a stream for writing to the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -340,7 +340,7 @@ public Task OpenWriteAsync(AccessCondition accessCondition, Blo /// Returns a task that performs an asynchronous operation to open a stream for writing to the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -357,7 +357,7 @@ public Task OpenWriteAsync(AccessCondition accessCondition, Blo /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromStream(Stream source, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -371,7 +371,7 @@ public void UploadFromStream(Stream source, AccessCondition accessCondition = nu /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromStream(Stream source, long length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -385,7 +385,7 @@ public void UploadFromStream(Stream source, long length, AccessCondition accessC /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] internal void UploadFromStreamHelper(Stream source, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) @@ -469,7 +469,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, AsyncCallbac /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -500,7 +500,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, long length, /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -517,7 +517,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, long length, /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -760,7 +760,7 @@ public Task UploadFromStreamAsync(Stream source, CancellationToken cancellationT /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -774,7 +774,7 @@ public Task UploadFromStreamAsync(Stream source, AccessCondition accessCondition /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -815,7 +815,7 @@ public Task UploadFromStreamAsync(Stream source, long length, CancellationToken /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -830,7 +830,7 @@ public Task UploadFromStreamAsync(Stream source, long length, AccessCondition ac /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -848,7 +848,7 @@ public Task UploadFromStreamAsync(Stream source, long length, AccessCondition ac /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -882,7 +882,7 @@ public ICancellableAsyncResult BeginUploadFromFile(string path, FileMode mode, A /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -986,7 +986,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, CancellationToken ca /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1001,7 +1001,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, AccessCondition acce /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1020,7 +1020,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, AccessCondition acce /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromByteArray(byte[] buffer, int index, int count, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1056,7 +1056,7 @@ public ICancellableAsyncResult BeginUploadFromByteArray(byte[] buffer, int index /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1114,7 +1114,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Cancel /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1130,7 +1130,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Access /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1148,7 +1148,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Access /// The text to upload. /// An object that indicates the text encoding to use. If null, UTF-8 will be used. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadText(string content, Encoding encoding = null, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1179,7 +1179,7 @@ public ICancellableAsyncResult BeginUploadText(string content, AsyncCallback cal /// The text to upload. /// An object that indicates the text encoding to use. If null, UTF-8 will be used. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1232,7 +1232,7 @@ public Task UploadTextAsync(string content, CancellationToken cancellationToken) /// The text to upload. /// An object that indicates the text encoding to use. If null, UTF-8 will be used. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1247,7 +1247,7 @@ public Task UploadTextAsync(string content, Encoding encoding, AccessCondition a /// The text to upload. /// An object that indicates the text encoding to use. If null, UTF-8 will be used. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1264,7 +1264,7 @@ public Task UploadTextAsync(string content, Encoding encoding, AccessCondition a /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadToStream(Stream target, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1291,7 +1291,7 @@ public ICancellableAsyncResult BeginDownloadToStream(Stream target, AsyncCallbac /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1340,7 +1340,7 @@ public Task DownloadToStreamAsync(Stream target, CancellationToken cancellationT /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1354,7 +1354,7 @@ public Task DownloadToStreamAsync(Stream target, AccessCondition accessCondition /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1372,7 +1372,7 @@ public Task DownloadToStreamAsync(Stream target, AccessCondition accessCondition /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadToFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1406,7 +1406,7 @@ public ICancellableAsyncResult BeginDownloadToFile(string path, FileMode mode, A /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1510,7 +1510,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, CancellationToken ca /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1525,7 +1525,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, AccessCondition acce /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1543,7 +1543,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, AccessCondition acce /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -1573,7 +1573,7 @@ public ICancellableAsyncResult BeginDownloadToByteArray(byte[] target, int index /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1626,7 +1626,7 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, Cancellation /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1641,7 +1641,7 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, AccessCondit /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1658,7 +1658,7 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, AccessCondit /// /// An object that indicates the text encoding to use. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The contents of the blob, as a string. public string DownloadText(Encoding encoding = null, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1688,7 +1688,7 @@ public ICancellableAsyncResult BeginDownloadText(AsyncCallback callback, object /// /// An object that indicates the text encoding to use. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1772,7 +1772,7 @@ public Task DownloadTextAsync(CancellationToken cancellationToken) /// /// An object that indicates the text encoding to use. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1786,7 +1786,7 @@ public Task DownloadTextAsync(Encoding encoding, AccessCondition accessC /// /// An object that indicates the text encoding to use. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1799,13 +1799,13 @@ public Task DownloadTextAsync(Encoding encoding, AccessCondition accessC #if SYNC /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadRangeToStream(Stream target, long? offset, long? length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1821,7 +1821,7 @@ public void DownloadRangeToStream(Stream target, long? offset, long? length, Acc #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -1836,13 +1836,13 @@ public ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? o } /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1862,7 +1862,7 @@ public ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? o } /// - /// Ends an asynchronous operation to download the contents of a blob to a stream. + /// Ends an asynchronous operation to download a range of bytes from a blob to a stream. /// /// An that references the pending asynchronous operation. public void EndDownloadRangeToStream(IAsyncResult asyncResult) @@ -1872,7 +1872,7 @@ public void EndDownloadRangeToStream(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -1885,7 +1885,7 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -1899,13 +1899,13 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1915,13 +1915,13 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1934,14 +1934,14 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length #if SYNC /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -1956,7 +1956,7 @@ public int DownloadRangeToByteArray(byte[] target, int index, long? blobOffset, #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -1972,14 +1972,14 @@ public ICancellableAsyncResult BeginDownloadRangeToByteArray(byte[] target, int } /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2027,7 +2027,7 @@ private void DownloadRangeToByteArrayCallback(IAsyncResult asyncResult) } /// - /// Ends an asynchronous operation to download the contents of a blob to a byte array. + /// Ends an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// An that references the pending asynchronous operation. /// The total number of bytes read into the buffer. @@ -2040,7 +2040,7 @@ public int EndDownloadRangeToByteArray(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -2054,7 +2054,7 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -2069,14 +2069,14 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2086,14 +2086,14 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2108,7 +2108,7 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b /// /// Checks existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. [DoesServiceRequest] @@ -2137,7 +2137,7 @@ public ICancellableAsyncResult BeginExists(AsyncCallback callback, object state) /// /// Begins an asynchronous request to check existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2189,7 +2189,7 @@ public Task ExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2201,7 +2201,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2217,7 +2217,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void FetchAttributes(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2246,7 +2246,7 @@ public ICancellableAsyncResult BeginFetchAttributes(AsyncCallback callback, obje /// Begins an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2298,7 +2298,7 @@ public Task FetchAttributesAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2311,7 +2311,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2327,7 +2327,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetMetadata(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2357,7 +2357,7 @@ public ICancellableAsyncResult BeginSetMetadata(AsyncCallback callback, object s /// Begins an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2410,7 +2410,7 @@ public Task SetMetadataAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2423,7 +2423,7 @@ public Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2439,7 +2439,7 @@ public Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetProperties(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2469,7 +2469,7 @@ public ICancellableAsyncResult BeginSetProperties(AsyncCallback callback, object /// Begins an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2522,7 +2522,7 @@ public Task SetPropertiesAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2535,7 +2535,7 @@ public Task SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptio /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2552,7 +2552,7 @@ public Task SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptio /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void Delete(DeleteSnapshotsOption deleteSnapshotsOption = DeleteSnapshotsOption.None, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2582,7 +2582,7 @@ public ICancellableAsyncResult BeginDelete(AsyncCallback callback, object state) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2635,7 +2635,7 @@ public Task DeleteAsync(CancellationToken cancellationToken) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2649,7 +2649,7 @@ public Task DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondi /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2666,7 +2666,7 @@ public Task DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondi /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob did already exist and was deleted; otherwise false. [DoesServiceRequest] @@ -2725,7 +2725,7 @@ public ICancellableAsyncResult BeginDeleteIfExists(AsyncCallback callback, objec /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2873,7 +2873,7 @@ public Task DeleteIfExistsAsync(CancellationToken cancellationToken) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2887,7 +2887,7 @@ public Task DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOptio /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2904,7 +2904,7 @@ public Task DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOptio /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request, or null. + /// A object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// A blob snapshot. [DoesServiceRequest] @@ -2936,7 +2936,7 @@ public ICancellableAsyncResult BeginCreateSnapshot(AsyncCallback callback, objec /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request, or null. + /// A object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2991,7 +2991,7 @@ public Task CreateSnapshotAsync(CancellationToken cancellationTo /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3005,7 +3005,7 @@ public Task CreateSnapshotAsync(IDictionary meta /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3128,7 +3128,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3145,7 +3145,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3245,7 +3245,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, CancellationToken c /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3258,7 +3258,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3366,7 +3366,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3380,7 +3380,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3480,7 +3480,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, CancellationToken /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3493,7 +3493,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, BlobRequestOption /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3610,7 +3610,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, CancellationToken c /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3626,7 +3626,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition acc /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3646,7 +3646,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition acc /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void PutBlock(string blockId, Stream blockData, string contentMD5, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -3715,7 +3715,7 @@ public ICancellableAsyncResult BeginPutBlock(string blockId, Stream blockData, s /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -3874,7 +3874,7 @@ public Task PutBlockAsync(string blockId, Stream blockData, string contentMD5, C /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3891,7 +3891,7 @@ public Task PutBlockAsync(string blockId, Stream blockData, string contentMD5, A /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3908,7 +3908,7 @@ public Task PutBlockAsync(string blockId, Stream blockData, string contentMD5, A /// /// An enumerable collection of block IDs, as base64-encoded strings. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void PutBlockList(IEnumerable blockList, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -3940,7 +3940,7 @@ public ICancellableAsyncResult BeginPutBlockList(IEnumerable blockList, /// /// An enumerable collection of block IDs, as base64-encoded strings. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -3996,7 +3996,7 @@ public Task PutBlockListAsync(IEnumerable blockList, CancellationToken c /// /// An enumerable collection of block IDs, as base64-encoded strings. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4010,7 +4010,7 @@ public Task PutBlockListAsync(IEnumerable blockList, AccessCondition acc /// /// An enumerable collection of block IDs, as base64-encoded strings. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4028,7 +4028,7 @@ public Task PutBlockListAsync(IEnumerable blockList, AccessCondition acc /// One of the enumeration values that indicates whether to return /// committed blocks, uncommitted blocks, or both. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of objects implementing . [DoesServiceRequest] @@ -4062,7 +4062,7 @@ public ICancellableAsyncResult BeginDownloadBlockList(AsyncCallback callback, ob /// One of the enumeration values that indicates whether to return /// committed blocks, uncommitted blocks, or both. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4121,7 +4121,7 @@ public Task> DownloadBlockListAsync(CancellationToken /// One of the enumeration values that indicates whether to return /// committed blocks, uncommitted blocks, or both. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4137,7 +4137,7 @@ public Task> DownloadBlockListAsync(BlockListingFilte /// One of the enumeration values that indicates whether to return /// committed blocks, uncommitted blocks, or both. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4155,7 +4155,7 @@ public Task> DownloadBlockListAsync(BlockListingFilte /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -4179,7 +4179,7 @@ public string StartCopyFromBlob(Uri source, AccessCondition sourceAccessConditio /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -4226,7 +4226,7 @@ public ICancellableAsyncResult BeginStartCopyFromBlob(CloudBlockBlob source, Asy /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4251,7 +4251,7 @@ public ICancellableAsyncResult BeginStartCopyFromBlob(Uri source, AccessConditio /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4334,7 +4334,7 @@ public Task StartCopyFromBlobAsync(CloudBlockBlob source, CancellationTo /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4350,7 +4350,7 @@ public Task StartCopyFromBlobAsync(Uri source, AccessCondition sourceAcc /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4367,7 +4367,7 @@ public Task StartCopyFromBlobAsync(Uri source, AccessCondition sourceAcc /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4383,7 +4383,7 @@ public Task StartCopyFromBlobAsync(CloudBlockBlob source, AccessConditio /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4400,7 +4400,7 @@ public Task StartCopyFromBlobAsync(CloudBlockBlob source, AccessConditio /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void AbortCopy(string copyId, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -4431,7 +4431,7 @@ public ICancellableAsyncResult BeginAbortCopy(string copyId, AsyncCallback callb /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4486,7 +4486,7 @@ public Task AbortCopyAsync(string copyId, CancellationToken cancellationToken) /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4500,7 +4500,7 @@ public Task AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobR /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4516,7 +4516,7 @@ public Task AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobR /// /// A collection of name-value pairs defining the metadata of the snapshot, or null. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the snapshot. /// If the metadata parameter is null then no metadata is associated with the request. internal RESTCommand CreateSnapshotImpl(IDictionary metadata, AccessCondition accessCondition, BlobRequestOptions options) @@ -4554,7 +4554,7 @@ internal RESTCommand CreateSnapshotImpl(IDictionaryNumber of bytes to upload from the content stream starting at its current position. /// The content MD5. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the stream. private RESTCommand PutBlobImpl(Stream stream, long? length, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4588,7 +4588,7 @@ private RESTCommand PutBlobImpl(Stream stream, long? length, string co /// The block ID. /// The content MD5. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that uploads the block. internal RESTCommand PutBlockImpl(Stream source, string blockId, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4618,7 +4618,7 @@ internal RESTCommand PutBlockImpl(Stream source, string blockId, strin /// /// The blocks to upload. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that uploads the block list. internal RESTCommand PutBlockListImpl(IEnumerable blocks, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4660,7 +4660,7 @@ internal RESTCommand PutBlockListImpl(IEnumerable bl /// /// The types of blocks. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the download block list. internal RESTCommand> GetBlockListImpl(BlockListingFilter typesOfBlocks, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudPageBlob.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudPageBlob.cs index 6e3d54698034..feb7190c3a06 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudPageBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/CloudPageBlob.cs @@ -40,7 +40,7 @@ public sealed partial class CloudPageBlob : ICloudBlob /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. /// On the object returned by this method, the method must be called exactly once for every call. Failing to end a read process before beginning another read can cause unknown behavior. @@ -70,7 +70,7 @@ public ICancellableAsyncResult BeginOpenRead(AsyncCallback callback, object stat /// Begins an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -145,7 +145,7 @@ public Task OpenReadAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -158,7 +158,7 @@ public Task OpenReadAsync(AccessCondition accessCondition, BlobRequestOp /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -175,7 +175,7 @@ public Task OpenReadAsync(AccessCondition accessCondition, BlobRequestOp /// /// The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for writing to the blob. [DoesServiceRequest] @@ -227,7 +227,7 @@ public ICancellableAsyncResult BeginOpenWrite(long? size, AsyncCallback callback /// /// The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -352,7 +352,7 @@ public Task OpenWriteAsync(long? size, CancellationToken cancel /// /// The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -366,7 +366,7 @@ public Task OpenWriteAsync(long? size, AccessCondition accessCo /// /// The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -383,7 +383,7 @@ public Task OpenWriteAsync(long? size, AccessCondition accessCo /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadToStream(Stream target, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -410,7 +410,7 @@ public ICancellableAsyncResult BeginDownloadToStream(Stream target, AsyncCallbac /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -459,7 +459,7 @@ public Task DownloadToStreamAsync(Stream target, CancellationToken cancellationT /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -473,7 +473,7 @@ public Task DownloadToStreamAsync(Stream target, AccessCondition accessCondition /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -491,7 +491,7 @@ public Task DownloadToStreamAsync(Stream target, AccessCondition accessCondition /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadToFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -525,7 +525,7 @@ public ICancellableAsyncResult BeginDownloadToFile(string path, FileMode mode, A /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -629,7 +629,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, CancellationToken ca /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -644,7 +644,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, AccessCondition acce /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -662,7 +662,7 @@ public Task DownloadToFileAsync(string path, FileMode mode, AccessCondition acce /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -692,7 +692,7 @@ public ICancellableAsyncResult BeginDownloadToByteArray(byte[] target, int index /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -745,7 +745,7 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, Cancellation /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -760,7 +760,7 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, AccessCondit /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -773,13 +773,13 @@ public Task DownloadToByteArrayAsync(byte[] target, int index, AccessCondit #if SYNC /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void DownloadRangeToStream(Stream target, long? offset, long? length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -795,7 +795,7 @@ public void DownloadRangeToStream(Stream target, long? offset, long? length, Acc #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -810,13 +810,13 @@ public ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? o } /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -836,7 +836,7 @@ public ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? o } /// - /// Ends an asynchronous operation to download the contents of a blob to a stream. + /// Ends an asynchronous operation to download a range of bytes from a blob to a stream. /// /// An that references the pending asynchronous operation. public void EndDownloadRangeToStream(IAsyncResult asyncResult) @@ -846,7 +846,7 @@ public void EndDownloadRangeToStream(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -859,7 +859,7 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -873,13 +873,13 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -889,13 +889,13 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -908,14 +908,14 @@ public Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length #if SYNC /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -930,7 +930,7 @@ public int DownloadRangeToByteArray(byte[] target, int index, long? blobOffset, #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -946,14 +946,14 @@ public ICancellableAsyncResult BeginDownloadRangeToByteArray(byte[] target, int } /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1001,7 +1001,7 @@ private void DownloadRangeToByteArrayCallback(IAsyncResult asyncResult) } /// - /// Ends an asynchronous operation to download the contents of a blob to a byte array. + /// Ends an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// An that references the pending asynchronous operation. /// The total number of bytes read into the buffer. @@ -1014,7 +1014,7 @@ public int EndDownloadRangeToByteArray(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -1028,7 +1028,7 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -1043,14 +1043,14 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1060,14 +1060,14 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b } /// - /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1084,7 +1084,7 @@ public Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? b /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromStream(Stream source, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1098,7 +1098,7 @@ public void UploadFromStream(Stream source, AccessCondition accessCondition = nu /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromStream(Stream source, long length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1112,7 +1112,7 @@ public void UploadFromStream(Stream source, long length, AccessCondition accessC /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. internal void UploadFromStreamHelper(Stream source, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) { @@ -1170,7 +1170,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, AsyncCallbac /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1201,7 +1201,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, long length, /// The stream providing the blob content. /// Specifies the number of bytes from the Stream source to upload from the start position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1218,7 +1218,7 @@ public ICancellableAsyncResult BeginUploadFromStream(Stream source, long length, /// The stream providing the blob content. /// Specifies the number of bytes from the Stream source to upload from the start position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1370,7 +1370,7 @@ public Task UploadFromStreamAsync(Stream source, CancellationToken cancellationT /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1384,7 +1384,7 @@ public Task UploadFromStreamAsync(Stream source, AccessCondition accessCondition /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1425,7 +1425,7 @@ public Task UploadFromStreamAsync(Stream source, long length, CancellationToken /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1440,7 +1440,7 @@ public Task UploadFromStreamAsync(Stream source, long length, AccessCondition ac /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1458,7 +1458,7 @@ public Task UploadFromStreamAsync(Stream source, long length, AccessCondition ac /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1492,7 +1492,7 @@ public ICancellableAsyncResult BeginUploadFromFile(string path, FileMode mode, A /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1596,7 +1596,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, CancellationToken ca /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1611,7 +1611,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, AccessCondition acce /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1630,7 +1630,7 @@ public Task UploadFromFileAsync(string path, FileMode mode, AccessCondition acce /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UploadFromByteArray(byte[] buffer, int index, int count, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1666,7 +1666,7 @@ public ICancellableAsyncResult BeginUploadFromByteArray(byte[] buffer, int index /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1724,7 +1724,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Cancel /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1740,7 +1740,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Access /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1757,7 +1757,7 @@ public Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, Access /// /// The maximum size of the page blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void Create(long size, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1789,7 +1789,7 @@ public ICancellableAsyncResult BeginCreate(long size, AsyncCallback callback, ob /// /// The maximum size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1844,7 +1844,7 @@ public Task CreateAsync(long size, CancellationToken cancellationToken) /// /// The maximum size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1858,7 +1858,7 @@ public Task CreateAsync(long size, AccessCondition accessCondition, BlobRequestO /// /// The maximum size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1875,7 +1875,7 @@ public Task CreateAsync(long size, AccessCondition accessCondition, BlobRequestO /// /// The size of the page blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void Resize(long size, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -1907,7 +1907,7 @@ public ICancellableAsyncResult BeginResize(long size, AsyncCallback callback, ob /// /// The size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1962,7 +1962,7 @@ public Task ResizeAsync(long size, CancellationToken cancellationToken) /// /// The size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1976,7 +1976,7 @@ public Task ResizeAsync(long size, AccessCondition accessCondition, BlobRequestO /// /// The size of the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1994,7 +1994,7 @@ public Task ResizeAsync(long size, AccessCondition accessCondition, BlobRequestO /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if is equal to . /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetSequenceNumber(SequenceNumberAction sequenceNumberAction, long? sequenceNumber, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2028,7 +2028,7 @@ public ICancellableAsyncResult BeginSetSequenceNumber(SequenceNumberAction seque /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if is equal to . /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2086,7 +2086,7 @@ public Task SetSequenceNumberAsync(SequenceNumberAction sequenceNumberAction, lo /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if is equal to . /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2101,7 +2101,7 @@ public Task SetSequenceNumberAsync(SequenceNumberAction sequenceNumberAction, lo /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if is equal to . /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2116,7 +2116,7 @@ public Task SetSequenceNumberAsync(SequenceNumberAction sequenceNumberAction, lo /// /// Checks existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. [DoesServiceRequest] @@ -2145,7 +2145,7 @@ public ICancellableAsyncResult BeginExists(AsyncCallback callback, object state) /// /// Begins an asynchronous request to check existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2197,7 +2197,7 @@ public Task ExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2209,7 +2209,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2225,7 +2225,7 @@ public Task ExistsAsync(BlobRequestOptions options, OperationContext opera /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void FetchAttributes(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2254,7 +2254,7 @@ public ICancellableAsyncResult BeginFetchAttributes(AsyncCallback callback, obje /// Begins an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2306,7 +2306,7 @@ public Task FetchAttributesAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2319,7 +2319,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2337,7 +2337,7 @@ public Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOpt /// The starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of page ranges. [DoesServiceRequest] @@ -2369,7 +2369,7 @@ public ICancellableAsyncResult BeginGetPageRanges(AsyncCallback callback, object /// The starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2424,7 +2424,7 @@ public Task> GetPageRangesAsync(CancellationToken cancell /// The starting offset of the data range, in bytes. Must be a multiple of 512. /// The length of the data range, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2439,7 +2439,7 @@ public Task> GetPageRangesAsync(long? offset, long? lengt /// The starting offset of the data range, in bytes. Must be a multiple of 512. /// The length of the data range, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2455,7 +2455,7 @@ public Task> GetPageRangesAsync(long? offset, long? lengt /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetMetadata(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2485,7 +2485,7 @@ public ICancellableAsyncResult BeginSetMetadata(AsyncCallback callback, object s /// Begins an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2538,7 +2538,7 @@ public Task SetMetadataAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2551,7 +2551,7 @@ public Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2567,7 +2567,7 @@ public Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void SetProperties(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2597,7 +2597,7 @@ public ICancellableAsyncResult BeginSetProperties(AsyncCallback callback, object /// Begins an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2650,7 +2650,7 @@ public Task SetPropertiesAsync(CancellationToken cancellationToken) /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2663,7 +2663,7 @@ public Task SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptio /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2680,7 +2680,7 @@ public Task SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptio /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void Delete(DeleteSnapshotsOption deleteSnapshotsOption = DeleteSnapshotsOption.None, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -2710,7 +2710,7 @@ public ICancellableAsyncResult BeginDelete(AsyncCallback callback, object state) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2763,7 +2763,7 @@ public Task DeleteAsync(CancellationToken cancellationToken) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2777,7 +2777,7 @@ public Task DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondi /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2794,7 +2794,7 @@ public Task DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondi /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob did already exist and was deleted; otherwise false. [DoesServiceRequest] @@ -2853,7 +2853,7 @@ public ICancellableAsyncResult BeginDeleteIfExists(AsyncCallback callback, objec /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -3001,7 +3001,7 @@ public Task DeleteIfExistsAsync(CancellationToken cancellationToken) /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3015,7 +3015,7 @@ public Task DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOptio /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3032,7 +3032,7 @@ public Task DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOptio /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request, or null. + /// A object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// A blob snapshot. [DoesServiceRequest] @@ -3064,7 +3064,7 @@ public ICancellableAsyncResult BeginCreateSnapshot(AsyncCallback callback, objec /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request, or null. + /// A object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -3119,7 +3119,7 @@ public Task CreateSnapshotAsync(CancellationToken cancellationTok /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3133,7 +3133,7 @@ public Task CreateSnapshotAsync(IDictionary metad /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3256,7 +3256,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3273,7 +3273,7 @@ public Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseI /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3373,7 +3373,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, CancellationToken c /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3386,7 +3386,7 @@ public Task RenewLeaseAsync(AccessCondition accessCondition, BlobRequestOptions /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3494,7 +3494,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3508,7 +3508,7 @@ public Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition acc /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3608,7 +3608,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, CancellationToken /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3621,7 +3621,7 @@ public Task ReleaseLeaseAsync(AccessCondition accessCondition, BlobRequestOption /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3738,7 +3738,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, CancellationToken c /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -3754,7 +3754,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition acc /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -3774,7 +3774,7 @@ public Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition acc /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void WritePages(Stream pageData, long startOffset, string contentMD5 = null, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -3843,7 +3843,7 @@ public ICancellableAsyncResult BeginWritePages(Stream pageData, long startOffset /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4002,7 +4002,7 @@ public Task WritePagesAsync(Stream pageData, long startOffset, string contentMD5 /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4019,7 +4019,7 @@ public Task WritePagesAsync(Stream pageData, long startOffset, string contentMD5 /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4037,7 +4037,7 @@ public Task WritePagesAsync(Stream pageData, long startOffset, string contentMD5 /// The offset at which to begin clearing pages, in bytes. The offset must be a multiple of 512. /// The length of the data range to be cleared, in bytes. The length must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void ClearPages(long startOffset, long length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -4070,7 +4070,7 @@ public ICancellableAsyncResult BeginClearPages(long startOffset, long length, As /// The offset at which to begin clearing pages, in bytes. The offset must be a multiple of 512. /// The length of the data range to be cleared, in bytes. The length must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4128,7 +4128,7 @@ public Task ClearPagesAsync(long startOffset, long length, CancellationToken can /// The offset at which to begin clearing pages, in bytes. The offset must be a multiple of 512. /// The length of the data range to be cleared, in bytes. The length must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4143,7 +4143,7 @@ public Task ClearPagesAsync(long startOffset, long length, AccessCondition acces /// The offset at which to begin clearing pages, in bytes. The offset must be a multiple of 512. /// The length of the data range to be cleared, in bytes. The length must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4161,7 +4161,7 @@ public Task ClearPagesAsync(long startOffset, long length, AccessCondition acces /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -4185,7 +4185,7 @@ public string StartCopyFromBlob(Uri source, AccessCondition sourceAccessConditio /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -4232,7 +4232,7 @@ public ICancellableAsyncResult BeginStartCopyFromBlob(CloudPageBlob source, Asyn /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4257,7 +4257,7 @@ public ICancellableAsyncResult BeginStartCopyFromBlob(Uri source, AccessConditio /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4341,7 +4341,7 @@ public Task StartCopyFromBlobAsync(CloudPageBlob source, CancellationTok /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4357,7 +4357,7 @@ public Task StartCopyFromBlobAsync(Uri source, AccessCondition sourceAcc /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4374,7 +4374,7 @@ public Task StartCopyFromBlobAsync(Uri source, AccessCondition sourceAcc /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4390,7 +4390,7 @@ public Task StartCopyFromBlobAsync(CloudPageBlob source, AccessCondition /// The source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4407,7 +4407,7 @@ public Task StartCopyFromBlobAsync(CloudPageBlob source, AccessCondition /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void AbortCopy(string copyId, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null) @@ -4438,7 +4438,7 @@ public ICancellableAsyncResult BeginAbortCopy(string copyId, AsyncCallback callb /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -4493,7 +4493,7 @@ public Task AbortCopyAsync(string copyId, CancellationToken cancellationToken) /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -4507,7 +4507,7 @@ public Task AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobR /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -4523,7 +4523,7 @@ public Task AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobR /// /// The size in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the blob. private RESTCommand CreateImpl(long sizeInBytes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4548,7 +4548,7 @@ private RESTCommand CreateImpl(long sizeInBytes, AccessCondition acces /// /// The size in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand ResizeImpl(long sizeInBytes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4574,7 +4574,7 @@ private RESTCommand ResizeImpl(long sizeInBytes, AccessCondition acces /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if this operation is an increment action. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the sequence number. private RESTCommand SetSequenceNumberImpl(SequenceNumberAction sequenceNumberAction, long? sequenceNumber, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4598,7 +4598,7 @@ private RESTCommand SetSequenceNumberImpl(SequenceNumberAction sequenc /// /// A collection of name-value pairs defining the metadata of the snapshot, or null. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the snapshot. /// If the metadata parameter is null then no metadata is associated with the request. private RESTCommand CreateSnapshotImpl(IDictionary metadata, AccessCondition accessCondition, BlobRequestOptions options) @@ -4635,7 +4635,7 @@ private RESTCommand CreateSnapshotImpl(IDictionaryThe starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A for getting the page ranges. private RESTCommand> GetPageRangesImpl(long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4665,7 +4665,7 @@ private RESTCommand> GetPageRangesImpl(long? offset, long /// The start offset. /// The content MD5. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that writes the pages. private RESTCommand PutPageImpl(Stream pageData, long startOffset, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -4716,7 +4716,7 @@ private RESTCommand PutPageImpl(Stream pageData, long startOffset, str /// The start offset. Must be multiples of 512. /// Length of the data range to be cleared. Must be multiples of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that writes the pages. private RESTCommand ClearPageImpl(long startOffset, long length, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/ICloudBlob.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/ICloudBlob.cs index ed6c861c156b..3de275e49063 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/ICloudBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Blob/ICloudBlob.cs @@ -33,7 +33,7 @@ public partial interface ICloudBlob : IListBlobItem /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. /// On the object returned by this method, the method must be called exactly once for every call. Failing to end a read process before beginning another read can cause unknown behavior. @@ -52,7 +52,7 @@ public partial interface ICloudBlob : IListBlobItem /// Begins an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -84,7 +84,7 @@ public partial interface ICloudBlob : IListBlobItem /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task OpenReadAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -93,7 +93,7 @@ public partial interface ICloudBlob : IListBlobItem /// Returns a task that performs an asynchronous operation to open a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -106,7 +106,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// The stream providing the blob content. Use a seek-able stream for optimal performance. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void UploadFromStream(Stream source, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); @@ -116,7 +116,7 @@ public partial interface ICloudBlob : IListBlobItem /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. void UploadFromStream(Stream source, long length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -135,7 +135,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -158,7 +158,7 @@ public partial interface ICloudBlob : IListBlobItem /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -173,14 +173,14 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// A object that represents the current operation. Task UploadFromStreamAsync(Stream source); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// A to observe while waiting for a task to complete. @@ -188,28 +188,28 @@ public partial interface ICloudBlob : IListBlobItem Task UploadFromStreamAsync(Stream source, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task UploadFromStreamAsync(Stream source, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task UploadFromStreamAsync(Stream source, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a block blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a block blob. /// /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. @@ -217,7 +217,7 @@ public partial interface ICloudBlob : IListBlobItem Task UploadFromStreamAsync(Stream source, long length); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a block blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a block blob. /// /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. @@ -226,23 +226,23 @@ public partial interface ICloudBlob : IListBlobItem Task UploadFromStreamAsync(Stream source, long length, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task UploadFromStreamAsync(Stream source, long length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to upload a stream to a blob. + /// Returns a task that performs an asynchronous operation to upload a stream to a blob. /// /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -256,7 +256,7 @@ public partial interface ICloudBlob : IListBlobItem /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void UploadFromFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -277,7 +277,7 @@ public partial interface ICloudBlob : IListBlobItem /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -314,7 +314,7 @@ public partial interface ICloudBlob : IListBlobItem /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task UploadFromFileAsync(string path, FileMode mode, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -325,7 +325,7 @@ public partial interface ICloudBlob : IListBlobItem /// The file providing the blob content. /// A constant that determines how to open the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -340,7 +340,7 @@ public partial interface ICloudBlob : IListBlobItem /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. void UploadFromByteArray(byte[] buffer, int index, int count, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -363,7 +363,7 @@ public partial interface ICloudBlob : IListBlobItem /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -403,7 +403,7 @@ public partial interface ICloudBlob : IListBlobItem /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task UploadFromByteArrayAsync(byte[] buffer, int index, int count, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -415,7 +415,7 @@ public partial interface ICloudBlob : IListBlobItem /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -428,7 +428,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// The target stream. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void DownloadToStream(Stream target, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -447,7 +447,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// The target stream. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -462,14 +462,14 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. /// /// The target stream. /// A object that represents the current operation. Task DownloadToStreamAsync(Stream target); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. /// /// The target stream. /// A to observe while waiting for a task to complete. @@ -477,21 +477,21 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadToStreamAsync(Stream target, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. /// /// The target stream. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DownloadToStreamAsync(Stream target, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a stream. /// /// The target stream. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -505,7 +505,7 @@ public partial interface ICloudBlob : IListBlobItem /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void DownloadToFile(string path, FileMode mode, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -526,7 +526,7 @@ public partial interface ICloudBlob : IListBlobItem /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -541,7 +541,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a file. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a file. /// /// The target file. /// A constant that determines how to open or create the file. @@ -549,7 +549,7 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadToFileAsync(string path, FileMode mode); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a file. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a file. /// /// The target file. /// A constant that determines how to open or create the file. @@ -558,23 +558,23 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadToFileAsync(string path, FileMode mode, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a file. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a file. /// /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DownloadToFileAsync(string path, FileMode mode, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a file. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a file. /// /// The target file. /// A constant that determines how to open or create the file. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -588,7 +588,7 @@ public partial interface ICloudBlob : IListBlobItem /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. int DownloadToByteArray(byte[] target, int index, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); @@ -610,7 +610,7 @@ public partial interface ICloudBlob : IListBlobItem /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -626,7 +626,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -634,7 +634,7 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadToByteArrayAsync(byte[] target, int index); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -643,23 +643,23 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadToByteArrayAsync(byte[] target, int index, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DownloadToByteArrayAsync(byte[] target, int index, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -668,19 +668,19 @@ public partial interface ICloudBlob : IListBlobItem #if SYNC /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void DownloadRangeToStream(Stream target, long? offset, long? length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. @@ -691,13 +691,13 @@ public partial interface ICloudBlob : IListBlobItem ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? offset, long? length, AsyncCallback callback, object state); /// - /// Begins an asynchronous operation to download the contents of a blob to a stream. + /// Begins an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -705,14 +705,14 @@ public partial interface ICloudBlob : IListBlobItem ICancellableAsyncResult BeginDownloadRangeToStream(Stream target, long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext, AsyncCallback callback, object state); /// - /// Ends an asynchronous operation to download the contents of a blob to a stream. + /// Ends an asynchronous operation to download a range of bytes from a blob to a stream. /// /// An that references the pending asynchronous operation. void EndDownloadRangeToStream(IAsyncResult asyncResult); #if TASK /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. @@ -721,7 +721,7 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. @@ -731,25 +731,25 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DownloadRangeToStreamAsync(Stream target, long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a stream. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -758,21 +758,21 @@ public partial interface ICloudBlob : IListBlobItem #if SYNC /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. int DownloadRangeToByteArray(byte[] target, int index, long? blobOffset, long? length, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -784,14 +784,14 @@ public partial interface ICloudBlob : IListBlobItem ICancellableAsyncResult BeginDownloadRangeToByteArray(byte[] target, int index, long? blobOffset, long? length, AsyncCallback callback, object state); /// - /// Begins an asynchronous operation to download the contents of a blob to a byte array. + /// Begins an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -799,7 +799,7 @@ public partial interface ICloudBlob : IListBlobItem ICancellableAsyncResult BeginDownloadRangeToByteArray(byte[] target, int index, long? blobOffset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext, AsyncCallback callback, object state); /// - /// Ends an asynchronous operation to download the contents of a blob to a byte array. + /// Ends an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// An that references the pending asynchronous operation. /// The total number of bytes read into the buffer. @@ -807,7 +807,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -817,7 +817,7 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? blobOffset, long? length); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -828,27 +828,27 @@ public partial interface ICloudBlob : IListBlobItem Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? blobOffset, long? length, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DownloadRangeToByteArrayAsync(byte[] target, int index, long? blobOffset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to download the contents of a blob to a byte array. + /// Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -859,7 +859,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Checks existence of the blob. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. bool Exists(BlobRequestOptions options = null, OperationContext operationContext = null); @@ -876,7 +876,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Begins an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -892,30 +892,30 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous request to check existence of the blob. + /// Returns a task that performs an asynchronous request to check existence of the blob. /// /// A object that represents the current operation. Task ExistsAsync(); /// - /// Returns a Task that performs an asynchronous request to check existence of the blob. + /// Returns a task that performs an asynchronous request to check existence of the blob. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task ExistsAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous request to check existence of the blob. + /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task ExistsAsync(BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous request to check existence of the blob. + /// Returns a task that performs an asynchronous request to check existence of the blob. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -927,7 +927,7 @@ public partial interface ICloudBlob : IListBlobItem /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void FetchAttributes(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -944,7 +944,7 @@ public partial interface ICloudBlob : IListBlobItem /// Begins an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -959,32 +959,32 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to populate the blob's properties and metadata. + /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// A object that represents the current operation. Task FetchAttributesAsync(); /// - /// Returns a Task that performs an asynchronous operation to populate the blob's properties and metadata. + /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task FetchAttributesAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to populate the blob's properties and metadata. + /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to populate the blob's properties and metadata. + /// Returns a task that performs an asynchronous operation to populate the blob's properties and metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -996,7 +996,7 @@ public partial interface ICloudBlob : IListBlobItem /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void SetMetadata(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -1013,7 +1013,7 @@ public partial interface ICloudBlob : IListBlobItem /// Begins an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1028,32 +1028,32 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to update the blob's metadata. + /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// A object that represents the current operation. Task SetMetadataAsync(); /// - /// Returns a Task that performs an asynchronous operation to update the blob's metadata. + /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task SetMetadataAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to update the blob's metadata. + /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to update the blob's metadata. + /// Returns a task that performs an asynchronous operation to update the blob's metadata. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1065,7 +1065,7 @@ public partial interface ICloudBlob : IListBlobItem /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void SetProperties(AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -1082,7 +1082,7 @@ public partial interface ICloudBlob : IListBlobItem /// Begins an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1097,32 +1097,32 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to update the blob's properties. + /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// A object that represents the current operation. Task SetPropertiesAsync(); /// - /// Returns a Task that performs an asynchronous operation to update the blob's properties. + /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task SetPropertiesAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to update the blob's properties. + /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to update the blob's properties. + /// Returns a task that performs an asynchronous operation to update the blob's properties. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1135,7 +1135,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void Delete(DeleteSnapshotsOption deleteSnapshotsOption = DeleteSnapshotsOption.None, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -1153,7 +1153,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1168,34 +1168,34 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to delete the blob. + /// Returns a task that performs an asynchronous operation to delete the blob. /// /// A object that represents the current operation. Task DeleteAsync(); /// - /// Returns a Task that performs an asynchronous operation to delete the blob. + /// Returns a task that performs an asynchronous operation to delete the blob. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task DeleteAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to delete the blob. + /// Returns a task that performs an asynchronous operation to delete the blob. /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to delete the blob. + /// Returns a task that performs an asynchronous operation to delete the blob. /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1208,7 +1208,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob did not already exist and was created; otherwise false. bool DeleteIfExists(DeleteSnapshotsOption deleteSnapshotsOption = DeleteSnapshotsOption.None, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); @@ -1227,7 +1227,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1243,34 +1243,34 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous request to delete the blob if it already exists. + /// Returns a task that performs an asynchronous request to delete the blob if it already exists. /// /// A object that represents the current operation. Task DeleteIfExistsAsync(); /// - /// Returns a Task that performs an asynchronous request to delete the blob if it already exists. + /// Returns a task that performs an asynchronous request to delete the blob if it already exists. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. Task DeleteIfExistsAsync(CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous request to delete the blob if it already exists. + /// Returns a task that performs an asynchronous request to delete the blob if it already exists. /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous request to delete the blob if it already exists. + /// Returns a task that performs an asynchronous request to delete the blob if it already exists. /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1325,7 +1325,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to acquire a lease on this blob. + /// Returns a task that performs an asynchronous operation to acquire a lease on this blob. /// /// A representing the span of time for which to acquire the lease, /// which will be rounded down to seconds. @@ -1334,7 +1334,7 @@ public partial interface ICloudBlob : IListBlobItem Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseId); /// - /// Returns a Task that performs an asynchronous operation to acquire a lease on this blob. + /// Returns a task that performs an asynchronous operation to acquire a lease on this blob. /// /// A representing the span of time for which to acquire the lease, /// which will be rounded down to seconds. @@ -1344,7 +1344,7 @@ public partial interface ICloudBlob : IListBlobItem Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseId, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to acquire a lease on this blob. + /// Returns a task that performs an asynchronous operation to acquire a lease on this blob. /// /// A representing the span of time for which to acquire the lease, /// which will be rounded down to seconds. @@ -1356,7 +1356,7 @@ public partial interface ICloudBlob : IListBlobItem Task AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to acquire a lease on this blob. + /// Returns a task that performs an asynchronous operation to acquire a lease on this blob. /// /// A representing the span of time for which to acquire the lease, /// which will be rounded down to seconds. @@ -1407,14 +1407,14 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to renew a lease on this blob. + /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// A object that represents the current operation. Task RenewLeaseAsync(AccessCondition accessCondition); /// - /// Returns a Task that performs an asynchronous operation to renew a lease on this blob. + /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// A to observe while waiting for a task to complete. @@ -1422,7 +1422,7 @@ public partial interface ICloudBlob : IListBlobItem Task RenewLeaseAsync(AccessCondition accessCondition, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to renew a lease on this blob. + /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// The options for this operation. @@ -1431,7 +1431,7 @@ public partial interface ICloudBlob : IListBlobItem Task RenewLeaseAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to renew a lease on this blob. + /// Returns a task that performs an asynchronous operation to renew a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// The options for this operation. @@ -1484,7 +1484,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to change the lease on this blob. + /// Returns a task that performs an asynchronous operation to change the lease on this blob. /// /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob, including a required lease ID. @@ -1492,7 +1492,7 @@ public partial interface ICloudBlob : IListBlobItem Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition accessCondition); /// - /// Returns a Task that performs an asynchronous operation to change the lease on this blob. + /// Returns a task that performs an asynchronous operation to change the lease on this blob. /// /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob, including a required lease ID. @@ -1501,7 +1501,7 @@ public partial interface ICloudBlob : IListBlobItem Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition accessCondition, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to change the lease on this blob. + /// Returns a task that performs an asynchronous operation to change the lease on this blob. /// /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob, including a required lease ID. @@ -1511,7 +1511,7 @@ public partial interface ICloudBlob : IListBlobItem Task ChangeLeaseAsync(string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to change the lease on this blob. + /// Returns a task that performs an asynchronous operation to change the lease on this blob. /// /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob, including a required lease ID. @@ -1560,14 +1560,14 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to release the lease on this blob. + /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// A object that represents the current operation. Task ReleaseLeaseAsync(AccessCondition accessCondition); /// - /// Returns a Task that performs an asynchronous operation to release the lease on this blob. + /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// A to observe while waiting for a task to complete. @@ -1575,7 +1575,7 @@ public partial interface ICloudBlob : IListBlobItem Task ReleaseLeaseAsync(AccessCondition accessCondition, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to release the lease on this blob. + /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// The options for this operation. @@ -1584,7 +1584,7 @@ public partial interface ICloudBlob : IListBlobItem Task ReleaseLeaseAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to release the lease on this blob. + /// Returns a task that performs an asynchronous operation to release the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. /// The options for this operation. @@ -1639,7 +1639,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to break the current lease on this blob. + /// Returns a task that performs an asynchronous operation to break the current lease on this blob. /// /// A representing the amount of time to allow the lease to remain, /// which will be rounded down to seconds. @@ -1647,7 +1647,7 @@ public partial interface ICloudBlob : IListBlobItem Task BreakLeaseAsync(TimeSpan? breakPeriod); /// - /// Returns a Task that performs an asynchronous operation to break the current lease on this blob. + /// Returns a task that performs an asynchronous operation to break the current lease on this blob. /// /// A representing the amount of time to allow the lease to remain, /// which will be rounded down to seconds. @@ -1656,7 +1656,7 @@ public partial interface ICloudBlob : IListBlobItem Task BreakLeaseAsync(TimeSpan? breakPeriod, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to break the current lease on this blob. + /// Returns a task that performs an asynchronous operation to break the current lease on this blob. /// /// A representing the amount of time to allow the lease to remain, /// which will be rounded down to seconds. @@ -1667,7 +1667,7 @@ public partial interface ICloudBlob : IListBlobItem Task BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to break the current lease on this blob. + /// Returns a task that performs an asynchronous operation to break the current lease on this blob. /// /// A representing the amount of time to allow the lease to remain, /// which will be rounded down to seconds. @@ -1686,7 +1686,7 @@ public partial interface ICloudBlob : IListBlobItem /// The URI of a source blob. /// An object that represents the access conditions for the source blob. /// An object that represents the access conditions for the destination blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "dest", Justification = "Reviewed")] @@ -1709,7 +1709,7 @@ public partial interface ICloudBlob : IListBlobItem /// The URI of a source blob. /// An object that represents the access conditions for the source blob. /// An object that represents the access conditions for the destination blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1726,7 +1726,7 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata + /// Returns a task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata /// to the blob referenced by this object. /// /// The URI of a source blob. @@ -1734,7 +1734,7 @@ public partial interface ICloudBlob : IListBlobItem Task StartCopyFromBlobAsync(Uri source); /// - /// Returns a Task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata + /// Returns a task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata /// to the blob referenced by this object. /// /// The URI of a source blob. @@ -1743,26 +1743,26 @@ public partial interface ICloudBlob : IListBlobItem Task StartCopyFromBlobAsync(Uri source, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata + /// Returns a task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata /// to the blob referenced by this object. /// /// The URI of a source blob. /// An object that represents the access conditions for the source blob. /// An object that represents the access conditions for the destination blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "dest", Justification = "Reviewed")] Task StartCopyFromBlobAsync(Uri source, AccessCondition sourceAccessCondition, AccessCondition destAccessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata + /// Returns a task that performs an asynchronous operation to request that the service start to copy another blob's contents, properties, and metadata /// to the blob referenced by this object. /// /// The URI of a source blob. /// An object that represents the access conditions for the source blob. /// An object that represents the access conditions for the destination blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1776,7 +1776,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. void AbortCopy(string copyId, AccessCondition accessCondition = null, BlobRequestOptions options = null, OperationContext operationContext = null); #endif @@ -1795,7 +1795,7 @@ public partial interface ICloudBlob : IListBlobItem /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1810,14 +1810,14 @@ public partial interface ICloudBlob : IListBlobItem #if TASK /// - /// Returns a Task that performs an asynchronous operation to abort an ongoing blob copy operation. + /// Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation. /// /// A string identifying the copy operation. /// A object that represents the current operation. Task AbortCopyAsync(string copyId); /// - /// Returns a Task that performs an asynchronous operation to abort an ongoing blob copy operation. + /// Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation. /// /// A string identifying the copy operation. /// A to observe while waiting for a task to complete. @@ -1825,21 +1825,21 @@ public partial interface ICloudBlob : IListBlobItem Task AbortCopyAsync(string copyId, CancellationToken cancellationToken); /// - /// Returns a Task that performs an asynchronous operation to abort an ongoing blob copy operation. + /// Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation. /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. Task AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Returns a Task that performs an asynchronous operation to abort an ongoing blob copy operation. + /// Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation. /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueue.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueue.cs index 4f17986b3aa5..11530e1febd5 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueue.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueue.cs @@ -41,7 +41,7 @@ public sealed partial class CloudQueue /// /// Creates the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void Create(QueueRequestOptions options = null, OperationContext operationContext = null) @@ -71,7 +71,7 @@ public ICancellableAsyncResult BeginCreate(AsyncCallback callback, object state) /// /// Begins an asynchronous operation to create a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -124,7 +124,7 @@ public Task CreateAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous operation to create a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -136,7 +136,7 @@ public Task CreateAsync(QueueRequestOptions options, OperationContext operationC /// /// Returns a task that performs an asynchronous operation to create a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -151,7 +151,7 @@ public Task CreateAsync(QueueRequestOptions options, OperationContext operationC /// /// Creates the queue if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// true if the queue did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -213,7 +213,7 @@ public ICancellableAsyncResult BeginCreateIfNotExists(AsyncCallback callback, ob /// /// Begins an asynchronous request to create the queue if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -356,7 +356,7 @@ public Task CreateIfNotExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous request to create the queue if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -368,7 +368,7 @@ public Task CreateIfNotExistsAsync(QueueRequestOptions options, OperationC /// /// Returns a task that performs an asynchronous request to create the queue if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -383,7 +383,7 @@ public Task CreateIfNotExistsAsync(QueueRequestOptions options, OperationC /// /// Deletes the queue if it already exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// true if the queue did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -440,7 +440,7 @@ public ICancellableAsyncResult BeginDeleteIfExists(AsyncCallback callback, objec /// /// Begins an asynchronous request to delete the queue if it already exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -582,7 +582,7 @@ public Task DeleteIfExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous request to delete the queue if it already exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -594,7 +594,7 @@ public Task DeleteIfExistsAsync(QueueRequestOptions options, OperationCont /// /// Returns a task that performs an asynchronous request to delete the queue if it already exists. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -609,7 +609,7 @@ public Task DeleteIfExistsAsync(QueueRequestOptions options, OperationCont /// /// Deletes the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void Delete(QueueRequestOptions options = null, OperationContext operationContext = null) @@ -639,7 +639,7 @@ public ICancellableAsyncResult BeginDelete(AsyncCallback callback, object state) /// /// Begins an asynchronous operation to delete a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -692,7 +692,7 @@ public Task DeleteAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous operation to delete a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -704,7 +704,7 @@ public Task DeleteAsync(QueueRequestOptions options, OperationContext operationC /// /// Returns a task that performs an asynchronous operation to delete a queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -720,7 +720,7 @@ public Task DeleteAsync(QueueRequestOptions options, OperationContext operationC /// Sets permissions for the queue. /// /// The permissions to apply to the queue. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void SetPermissions(QueuePermissions permissions, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -752,7 +752,7 @@ public ICancellableAsyncResult BeginSetPermissions(QueuePermissions permissions, /// Begins an asynchronous request to set permissions for the queue. /// /// The permissions to apply to the queue. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -808,7 +808,7 @@ public Task SetPermissionsAsync(QueuePermissions permissions, CancellationToken /// Returns a task that performs an asynchronous request to set permissions for the queue. /// /// The permissions to apply to the queue. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -821,7 +821,7 @@ public Task SetPermissionsAsync(QueuePermissions permissions, QueueRequestOption /// Returns a task that performs an asynchronous request to set permissions for the queue. /// /// The permissions to apply to the queue. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -836,7 +836,7 @@ public Task SetPermissionsAsync(QueuePermissions permissions, QueueRequestOption /// /// Gets the permissions settings for the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The queue's permissions. [DoesServiceRequest] @@ -867,7 +867,7 @@ public ICancellableAsyncResult BeginGetPermissions(AsyncCallback callback, objec /// /// Begins an asynchronous request to get the permissions settings for the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -921,7 +921,7 @@ public Task GetPermissionsAsync(CancellationToken cancellation /// /// Returns a task that performs an asynchronous request to get the permissions settings for the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -933,7 +933,7 @@ public Task GetPermissionsAsync(QueueRequestOptions options, O /// /// Returns a task that performs an asynchronous request to get the permissions settings for the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -948,7 +948,7 @@ public Task GetPermissionsAsync(QueueRequestOptions options, O /// /// Checks existence of the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// true if the queue exists. [DoesServiceRequest] @@ -979,7 +979,7 @@ public ICancellableAsyncResult BeginExists(AsyncCallback callback, object state) /// /// Begins an asynchronous request to check existence of the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1033,7 +1033,7 @@ public Task ExistsAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous request to check existence of the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1045,7 +1045,7 @@ public Task ExistsAsync(QueueRequestOptions options, OperationContext oper /// /// Returns a task that performs an asynchronous request to check existence of the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1060,7 +1060,7 @@ public Task ExistsAsync(QueueRequestOptions options, OperationContext oper /// /// Sets the queue's user-defined metadata. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void SetMetadata(QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1090,7 +1090,7 @@ public ICancellableAsyncResult BeginSetMetadata(AsyncCallback callback, object s /// /// Begins an asynchronous operation to set user-defined metadata on the queue. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1143,7 +1143,7 @@ public Task SetMetadataAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous operation to set user-defined metadata on the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1155,7 +1155,7 @@ public Task SetMetadataAsync(QueueRequestOptions options, OperationContext opera /// /// Returns a task that performs an asynchronous operation to set user-defined metadata on the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1170,7 +1170,7 @@ public Task SetMetadataAsync(QueueRequestOptions options, OperationContext opera /// /// Fetches the queue's attributes. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void FetchAttributes(QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1200,7 +1200,7 @@ public ICancellableAsyncResult BeginFetchAttributes(AsyncCallback callback, obje /// /// Begins an asynchronous operation to fetch the queue's attributes. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1253,7 +1253,7 @@ public Task FetchAttributesAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous operation to fetch the queue's attributes. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1265,7 +1265,7 @@ public Task FetchAttributesAsync(QueueRequestOptions options, OperationContext o /// /// Returns a task that performs an asynchronous operation to fetch the queue's attributes. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1284,7 +1284,7 @@ public Task FetchAttributesAsync(QueueRequestOptions options, OperationContext o /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void AddMessage(CloudQueueMessage message, TimeSpan? timeToLive = null, TimeSpan? initialVisibilityDelay = null, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1321,7 +1321,7 @@ public ICancellableAsyncResult BeginAddMessage(CloudQueueMessage message, AsyncC /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1382,7 +1382,7 @@ public Task AddMessageAsync(CloudQueueMessage message, CancellationToken cancell /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1398,7 +1398,7 @@ public Task AddMessageAsync(CloudQueueMessage message, TimeSpan? timeToLive, Tim /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1416,7 +1416,7 @@ public Task AddMessageAsync(CloudQueueMessage message, TimeSpan? timeToLive, Tim /// The message to update. /// The visibility timeout interval. /// Flags of values that specifies which parts of the message are to be updated. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. [DoesServiceRequest] public void UpdateMessage(CloudQueueMessage message, TimeSpan visibilityTimeout, MessageUpdateFields updateFields, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1452,7 +1452,7 @@ public ICancellableAsyncResult BeginUpdateMessage(CloudQueueMessage message, Tim /// The message to update. /// The visibility timeout interval. /// An EnumSet of values that specifies which parts of the message are to be updated. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1516,7 +1516,7 @@ public Task UpdateMessageAsync(CloudQueueMessage message, TimeSpan visibilityTim /// The message to update. /// The visibility timeout interval. /// An EnumSet of values that specifies which parts of the message are to be updated. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1531,7 +1531,7 @@ public Task UpdateMessageAsync(CloudQueueMessage message, TimeSpan visibilityTim /// The message to update. /// The visibility timeout interval. /// An EnumSet of values that specifies which parts of the message are to be updated. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1547,7 +1547,7 @@ public Task UpdateMessageAsync(CloudQueueMessage message, TimeSpan visibilityTim /// Deletes a message. /// /// A message. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void DeleteMessage(CloudQueueMessage message, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1562,7 +1562,7 @@ public void DeleteMessage(CloudQueueMessage message, QueueRequestOptions options /// /// The message ID. /// The pop receipt value. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void DeleteMessage(string messageId, string popReceipt, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -1597,7 +1597,7 @@ public ICancellableAsyncResult BeginDeleteMessage(CloudQueueMessage message, Asy /// Begins an asynchronous operation to delete a message. /// /// A message. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1629,7 +1629,7 @@ public ICancellableAsyncResult BeginDeleteMessage(string messageId, string popRe /// /// The message ID. /// The pop receipt value. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1688,7 +1688,7 @@ public Task DeleteMessageAsync(CloudQueueMessage message, CancellationToken canc /// Returns a task that performs an asynchronous operation to delete a message. /// /// A message. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1701,7 +1701,7 @@ public Task DeleteMessageAsync(CloudQueueMessage message, QueueRequestOptions op /// Returns a task that performs an asynchronous operation to delete a message. /// /// A message. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1741,7 +1741,7 @@ public Task DeleteMessageAsync(string messageId, string popReceipt, Cancellation /// /// The message ID. /// The pop receipt value. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1755,7 +1755,7 @@ public Task DeleteMessageAsync(string messageId, string popReceipt, QueueRequest /// /// The message ID. /// The pop receipt value. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1774,7 +1774,7 @@ public Task DeleteMessageAsync(string messageId, string popReceipt, QueueRequest /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// An enumerable collection of messages. [DoesServiceRequest] @@ -1810,7 +1810,7 @@ public ICancellableAsyncResult BeginGetMessages(int messageCount, AsyncCallback /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1870,7 +1870,7 @@ public Task> GetMessagesAsync(int messageCount, C /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1886,7 +1886,7 @@ public Task> GetMessagesAsync(int messageCount, T /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -1902,7 +1902,7 @@ public Task> GetMessagesAsync(int messageCount, T /// Gets a message from the queue using the default request options. This operation marks the retrieved message as invisible in the queue for the default visibility timeout period. /// /// The visibility timeout interval. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// A message. [DoesServiceRequest] @@ -1929,7 +1929,7 @@ public ICancellableAsyncResult BeginGetMessage(AsyncCallback callback, object st /// reserved before it becomes visible, and therefore available for deletion. /// /// The visibility timeout interval. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -1979,7 +1979,7 @@ public Task GetMessageAsync(CancellationToken cancellationTok /// reserved before it becomes visible, and therefore available for deletion. /// /// The visibility timeout interval. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -1993,7 +1993,7 @@ public Task GetMessageAsync(TimeSpan? visibilityTimeout, Queu /// reserved before it becomes visible, and therefore available for deletion. /// /// The visibility timeout interval. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2009,7 +2009,7 @@ public Task GetMessageAsync(TimeSpan? visibilityTimeout, Queu /// Peeks a message from the queue, using the specified request options and operation context. A peek request retrieves a message from the queue without changing its visibility. /// /// The number of messages to peek. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// An enumerable collection of messages. [DoesServiceRequest] @@ -2042,7 +2042,7 @@ public ICancellableAsyncResult BeginPeekMessages(int messageCount, AsyncCallback /// Begins an asynchronous operation to peek messages from the queue. /// /// The number of messages to peek. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2099,7 +2099,7 @@ public Task> PeekMessagesAsync(int messageCount, /// Returns a task that performs an asynchronous operation to peek messages from the queue. /// /// The number of messages to peek. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2112,7 +2112,7 @@ public Task> PeekMessagesAsync(int messageCount, /// Returns a task that performs an asynchronous operation to peek messages from the queue. /// /// The number of messages to peek. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2127,7 +2127,7 @@ public Task> PeekMessagesAsync(int messageCount, /// /// Peeks a single message from the queue. A peek request retrieves a message from the queue without changing its visibility. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// A message. [DoesServiceRequest] @@ -2152,7 +2152,7 @@ public ICancellableAsyncResult BeginPeekMessage(AsyncCallback callback, object s /// /// Begins an asynchronous operation to peek a single message from the queue. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2200,7 +2200,7 @@ public Task PeekMessageAsync(CancellationToken cancellationTo /// /// Returns a task that performs an asynchronous operation to get a single message from the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2212,7 +2212,7 @@ public Task PeekMessageAsync(QueueRequestOptions options, Ope /// /// Returns a task that performs an asynchronous operation to get a single message from the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2227,7 +2227,7 @@ public Task PeekMessageAsync(QueueRequestOptions options, Ope /// /// Clears all messages from the queue. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. [DoesServiceRequest] public void Clear(QueueRequestOptions options = null, OperationContext operationContext = null) @@ -2257,7 +2257,7 @@ public ICancellableAsyncResult BeginClear(AsyncCallback callback, object state) /// /// Begins an asynchronous operation to clear all messages from the queue. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests to the storage service, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -2310,7 +2310,7 @@ public Task ClearAsync(CancellationToken cancellationToken) /// /// Returns a task that performs an asynchronous operation to clear all messages from the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -2322,7 +2322,7 @@ public Task ClearAsync(QueueRequestOptions options, OperationContext operationCo /// /// Returns a task that performs an asynchronous operation to clear all messages from the queue. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -2347,7 +2347,7 @@ public void EndBeginClear(IAsyncResult asyncResult) /// /// Implementation for the ClearMessages method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand ClearMessagesImpl(QueueRequestOptions options) { @@ -2364,7 +2364,7 @@ private RESTCommand ClearMessagesImpl(QueueRequestOptions options) /// /// Implementation for the Create method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the queue. private RESTCommand CreateQueueImpl(QueueRequestOptions options) { @@ -2389,7 +2389,7 @@ private RESTCommand CreateQueueImpl(QueueRequestOptions options) /// /// Implementation for the Delete method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the queue. private RESTCommand DeleteQueueImpl(QueueRequestOptions options) { @@ -2406,7 +2406,7 @@ private RESTCommand DeleteQueueImpl(QueueRequestOptions options) /// /// Implementation for the FetchAttributes method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand FetchAttributesImpl(QueueRequestOptions options) { @@ -2428,7 +2428,7 @@ private RESTCommand FetchAttributesImpl(QueueRequestOptions options) /// /// Implementation for the Exists method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that checks existence. private RESTCommand ExistsImpl(QueueRequestOptions options) { @@ -2458,7 +2458,7 @@ private RESTCommand ExistsImpl(QueueRequestOptions options) /// /// Implementation for the SetMetadata method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand SetMetadataImpl(QueueRequestOptions options) { @@ -2481,7 +2481,7 @@ private RESTCommand SetMetadataImpl(QueueRequestOptions options) /// Implementation for the SetPermissions method. /// /// The permissions to set. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand SetPermissionsImpl(QueuePermissions acl, QueueRequestOptions options) { @@ -2508,7 +2508,7 @@ private RESTCommand SetPermissionsImpl(QueuePermissions acl, QueueRequ /// /// Implementation for the GetPermissions method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetPermissionsImpl(QueueRequestOptions options) { @@ -2535,7 +2535,7 @@ private RESTCommand GetPermissionsImpl(QueueRequestOptions opt /// A queue message. /// A value indicating the message time-to-live. /// The visibility delay for the message. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand AddMessageImpl(CloudQueueMessage message, TimeSpan? timeToLive, TimeSpan? initialVisibilityDelay, QueueRequestOptions options) { @@ -2603,7 +2603,7 @@ private RESTCommand AddMessageImpl(CloudQueueMessage message, TimeSpan /// A queue message. /// The visibility timeout for the message. /// Indicates whether to update the visibility delay, message contents, or both. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand UpdateMessageImpl(CloudQueueMessage message, TimeSpan visibilityTimeout, MessageUpdateFields updateFields, QueueRequestOptions options) { @@ -2649,7 +2649,7 @@ private RESTCommand UpdateMessageImpl(CloudQueueMessage message, TimeS /// /// The message ID. /// The pop receipt value. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the queue. private RESTCommand DeleteMessageImpl(string messageId, string popReceipt, QueueRequestOptions options) { @@ -2669,7 +2669,7 @@ private RESTCommand DeleteMessageImpl(string messageId, string popRece /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand> GetMessagesImpl(int messageCount, TimeSpan? visibilityTimeout, QueueRequestOptions options) { @@ -2697,7 +2697,7 @@ private RESTCommand> GetMessagesImpl(int messageC /// Implementation for the PeekMessages method. /// /// The number of messages to retrieve. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand> PeekMessagesImpl(int messageCount, QueueRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueueClient.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueueClient.cs index b80ad9d52d8e..777e4841a87c 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueueClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Queue/CloudQueueClient.cs @@ -95,7 +95,7 @@ internal IAuthenticationHandler AuthenticationHandler /// /// The queue name prefix. /// An enumeration value that indicates which details to include in the listing. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// An enumerable collection of objects that implement and are retrieved lazily. public IEnumerable ListQueues(string prefix = null, QueueListingDetails queueListingDetails = QueueListingDetails.None, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -137,7 +137,7 @@ public QueueResultSegment ListQueuesSegmented(string prefix, QueueContinuationTo /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// A result segment containing objects that implement . public QueueResultSegment ListQueuesSegmented(string prefix, QueueListingDetails queueListingDetails, int? maxResults, QueueContinuationToken currentToken, QueueRequestOptions options = null, OperationContext operationContext = null) @@ -157,7 +157,7 @@ public QueueResultSegment ListQueuesSegmented(string prefix, QueueListingDetails /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// A result segment. private ResultSegment ListQueuesSegmentedCore(string prefix, QueueListingDetails queueListingDetails, int? maxResults, QueueContinuationToken currentToken, QueueRequestOptions options, OperationContext operationContext) @@ -202,7 +202,7 @@ public ICancellableAsyncResult BeginListQueuesSegmented(string prefix, QueueCont /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. @@ -289,7 +289,7 @@ public Task ListQueuesSegmentedAsync(string prefix, QueueCon /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -306,7 +306,7 @@ public Task ListQueuesSegmentedAsync(string prefix, QueueLis /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -324,7 +324,7 @@ public Task ListQueuesSegmentedAsync(string prefix, QueueLis /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A enumeration describing which items to include in the listing. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// The continuation token. /// A that lists the queues. private RESTCommand> ListQueuesImpl(string prefix, int? maxResults, QueueListingDetails queueListingDetails, QueueRequestOptions options, QueueContinuationToken currentToken) @@ -383,7 +383,7 @@ public ICancellableAsyncResult BeginGetServiceProperties(AsyncCallback callback, /// /// Begins an asynchronous operation to get the properties of the queue service. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user defined object to be passed to the callback delegate. @@ -436,7 +436,7 @@ public Task GetServicePropertiesAsync(CancellationToken cance /// /// Returns a task that performs an asynchronous operation to get the properties of the queue service. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -448,7 +448,7 @@ public Task GetServicePropertiesAsync(QueueRequestOptions req /// /// Returns a task that performs an asynchronous operation to get the properties of the queue service. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -463,7 +463,7 @@ public Task GetServicePropertiesAsync(QueueRequestOptions req /// /// Gets the properties of the queue service. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// The queue service properties. [DoesServiceRequest] @@ -495,7 +495,7 @@ public ICancellableAsyncResult BeginSetServiceProperties(ServiceProperties prope /// Begins an asynchronous operation to set the properties of the queue service. /// /// The queue service properties. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user defined object to be passed to the callback delegate. @@ -550,7 +550,7 @@ public Task SetServicePropertiesAsync(ServiceProperties properties, Cancellation /// Returns a task that performs an asynchronous operation to set the properties of the queue service. /// /// The queue service properties. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A object that represents the current operation. [DoesServiceRequest] @@ -563,7 +563,7 @@ public Task SetServicePropertiesAsync(ServiceProperties properties, QueueRequest /// Returns a task that performs an asynchronous operation to set the properties of the queue service. /// /// The queue service properties. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -579,7 +579,7 @@ public Task SetServicePropertiesAsync(ServiceProperties properties, QueueRequest /// Sets the properties of the queue service. /// /// The queue service properties. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. [DoesServiceRequest] public void SetServiceProperties(ServiceProperties properties, QueueRequestOptions requestOptions = null, OperationContext operationContext = null) diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTable.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTable.cs index 0d55c84a0d12..ec1faaa6149f 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTable.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTable.cs @@ -22,6 +22,7 @@ namespace Microsoft.WindowsAzure.Storage.Table using Microsoft.WindowsAzure.Storage.Core.Util; using Microsoft.WindowsAzure.Storage.Shared.Protocol; using Microsoft.WindowsAzure.Storage.Table.Protocol; + using Microsoft.WindowsAzure.Storage.Table.Queryable; using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; @@ -558,7 +559,14 @@ public Task> ExecuteQuerySegmentedAsync(Tabl public IEnumerable ExecuteQuery(TableQuery query, TableRequestOptions requestOptions = null, OperationContext operationContext = null) where TElement : ITableEntity, new() { CommonUtility.AssertNotNull("query", query); - return query.Execute(this.ServiceClient, this.Name, requestOptions, operationContext); + if (query.Provider != null) + { + return query.Execute(requestOptions, operationContext); + } + else + { + return query.ExecuteInternal(this.ServiceClient, this.Name, requestOptions, operationContext); + } } /// @@ -574,7 +582,14 @@ public Task> ExecuteQuerySegmentedAsync(Tabl public TableQuerySegment ExecuteQuerySegmented(TableQuery query, TableContinuationToken token, TableRequestOptions requestOptions = null, OperationContext operationContext = null) where TElement : ITableEntity, new() { CommonUtility.AssertNotNull("query", query); - return query.ExecuteQuerySegmented(token, this.ServiceClient, this.Name, requestOptions, operationContext); + if (query.Provider != null) + { + return query.ExecuteSegmented(token, requestOptions, operationContext); + } + else + { + return query.ExecuteQuerySegmentedInternal(token, this.ServiceClient, this.Name, requestOptions, operationContext); + } } #endif @@ -609,7 +624,14 @@ public Task> ExecuteQuerySegmentedAsync(Tabl public ICancellableAsyncResult BeginExecuteQuerySegmented(TableQuery query, TableContinuationToken token, TableRequestOptions requestOptions, OperationContext operationContext, AsyncCallback callback, object state) where TElement : ITableEntity, new() { CommonUtility.AssertNotNull("query", query); - return query.BeginExecuteQuerySegmented(token, this.ServiceClient, this.Name, requestOptions, operationContext, callback, state); + if (query.Provider != null) + { + return query.BeginExecuteSegmented(token, requestOptions, operationContext, callback, state); + } + else + { + return query.BeginExecuteQuerySegmentedInternal(token, this.ServiceClient, this.Name, requestOptions, operationContext, callback, state); + } } /// @@ -702,7 +724,14 @@ public TableQuerySegment EndExecuteQuerySegmented(IAsyncResult { CommonUtility.AssertNotNull("query", query); CommonUtility.AssertNotNull("resolver", resolver); - return query.Execute(this.ServiceClient, this.Name, resolver, requestOptions, operationContext); + if (query.Provider != null) + { + return TableQueryableExtensions.Resolve(query, resolver).Execute(requestOptions, operationContext); + } + else + { + return query.ExecuteInternal(this.ServiceClient, this.Name, resolver, requestOptions, operationContext); + } } /// @@ -721,7 +750,14 @@ public TableQuerySegment EndExecuteQuerySegmented(IAsyncResult { CommonUtility.AssertNotNull("query", query); CommonUtility.AssertNotNull("resolver", resolver); - return query.ExecuteQuerySegmented(token, this.ServiceClient, this.Name, resolver, requestOptions, operationContext); + if (query.Provider != null) + { + return TableQueryableExtensions.Resolve(query, resolver).ExecuteSegmented(token, requestOptions, operationContext); + } + else + { + return query.ExecuteQuerySegmentedInternal(token, this.ServiceClient, this.Name, resolver, requestOptions, operationContext); + } } #endif @@ -760,7 +796,14 @@ public TableQuerySegment EndExecuteQuerySegmented(IAsyncResult { CommonUtility.AssertNotNull("query", query); CommonUtility.AssertNotNull("resolver", resolver); - return query.BeginExecuteQuerySegmented(token, this.ServiceClient, this.Name, resolver, requestOptions, operationContext, callback, state); + if (query.Provider != null) + { + return TableQueryableExtensions.Resolve(query, resolver).BeginExecuteSegmented(token, requestOptions, operationContext, callback, state); + } + else + { + return query.BeginExecuteQuerySegmentedInternal(token, this.ServiceClient, this.Name, resolver, requestOptions, operationContext, callback, state); + } } /// diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTableClient.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTableClient.cs index 12c767f491c9..70d19ceee8f0 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTableClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/CloudTableClient.cs @@ -100,7 +100,7 @@ internal IAuthenticationHandler AuthenticationHandler /// Returns an enumerable collection of tables, which are retrieved lazily, that begin with the specified prefix. /// /// The table name prefix. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// An enumerable collection of tables that are retrieved lazily. [DoesServiceRequest] @@ -109,7 +109,7 @@ public IEnumerable ListTables(string prefix = null, TableRequestOpti requestOptions = TableRequestOptions.ApplyDefaults(requestOptions, this); operationContext = operationContext ?? new OperationContext(); - return CloudTableClient.GenerateListTablesQuery(prefix, null).Execute(this, TableConstants.TableServiceTablesName, requestOptions, operationContext).Select( + return CloudTableClient.GenerateListTablesQuery(prefix, null).ExecuteInternal(this, TableConstants.TableServiceTablesName, requestOptions, operationContext).Select( tbl => new CloudTable(tbl[TableConstants.TableName].StringValue, this)); } @@ -143,7 +143,7 @@ public TableResultSegment ListTablesSegmented(string prefix, TableContinuationTo /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// An enumerable collection of tables that are retrieved lazily. [DoesServiceRequest] @@ -152,7 +152,7 @@ public TableResultSegment ListTablesSegmented(string prefix, int? maxResults, Ta requestOptions = TableRequestOptions.ApplyDefaults(requestOptions, this); operationContext = operationContext ?? new OperationContext(); TableQuerySegment res = - CloudTableClient.GenerateListTablesQuery(prefix, maxResults).ExecuteQuerySegmented(currentToken, this, TableConstants.TableServiceTablesName, requestOptions, operationContext); + CloudTableClient.GenerateListTablesQuery(prefix, maxResults).ExecuteQuerySegmentedInternal(currentToken, this, TableConstants.TableServiceTablesName, requestOptions, operationContext); List tables = res.Results.Select(tbl => new CloudTable( tbl.Properties[TableConstants.TableName].StringValue, @@ -211,7 +211,7 @@ public ICancellableAsyncResult BeginListTablesSegmented(string prefix, int? maxR requestOptions = TableRequestOptions.ApplyDefaults(requestOptions, this); operationContext = operationContext ?? new OperationContext(); - return CloudTableClient.GenerateListTablesQuery(prefix, maxResults).BeginExecuteQuerySegmented( + return CloudTableClient.GenerateListTablesQuery(prefix, maxResults).BeginExecuteQuerySegmentedInternal( currentToken, this, TableConstants.TableServiceTablesName, @@ -357,7 +357,7 @@ private static TableQuery GenerateListTablesQuery(string pre /// /// Gets the service properties for the Table service. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// The table service properties as a object. [DoesServiceRequest] @@ -384,7 +384,7 @@ public ICancellableAsyncResult BeginGetServiceProperties(AsyncCallback callback, /// /// Begins an asynchronous operation to get the service properties of the Table service. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user defined object to be passed to the callback delegate. @@ -460,7 +460,7 @@ public Task GetServicePropertiesAsync(TableRequestOptions req /// Sets the service properties of the Table service. /// /// The table service properties. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. [DoesServiceRequest] public void SetServiceProperties(ServiceProperties properties, TableRequestOptions requestOptions = null, OperationContext operationContext = null) @@ -488,7 +488,7 @@ public ICancellableAsyncResult BeginSetServiceProperties(ServiceProperties prope /// Begins an asynchronous operation to set the service properties of the Table service. /// /// The table service properties. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user defined object to be passed to the callback delegate. diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceContext.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceContext.cs index b68c81fdf83b..fcf505324559 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceContext.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceContext.cs @@ -297,7 +297,7 @@ public DataServiceResponse EndSaveChangesWithRetries(IAsyncResult asyncResult) #if TASK /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// A object that represents the current operation. [DoesServiceRequest] @@ -307,7 +307,7 @@ public Task SaveChangesWithRetriesAsync() } /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// A to observe while waiting for a task to complete. /// A object that represents the current operation. @@ -318,7 +318,7 @@ public Task SaveChangesWithRetriesAsync(CancellationToken c } /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// Additional options for saving changes. /// A object that represents the current operation. @@ -329,7 +329,7 @@ public Task SaveChangesWithRetriesAsync(SaveChangesOptions } /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// Additional options for saving changes. /// A to observe while waiting for a task to complete. @@ -341,7 +341,7 @@ public Task SaveChangesWithRetriesAsync(SaveChangesOptions } /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// Additional options for saving changes. /// A object that specifies execution options, such as retry policy and timeout settings, for the operation. @@ -354,7 +354,7 @@ public Task SaveChangesWithRetriesAsync(SaveChangesOptions } /// - /// Returns a task that performs an asynchronous operation to save changes, using the retry policy specified for the service context. + /// Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context. /// /// Additional options for saving changes. /// A object that specifies execution options, such as retry policy and timeout settings, for the operation. diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceQuery.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceQuery.cs index 6601de4ea0bd..2f3c34335177 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceQuery.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/DataServices/TableServiceQuery.cs @@ -176,7 +176,7 @@ public ICancellableAsyncResult BeginExecuteSegmented(TableContinuationToken curr /// Begins an asynchronous operation to execute a query and return the results as a result segment. /// /// A continuation token returned by a previous listing operation, can be null. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The callback delegate that will receive notification when the asynchronous operation completes. /// A user-defined object that will be passed to the callback delegate. diff --git a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/TableQuery.cs b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/TableQuery.cs index 1d5f59db58ea..d84b884e3c91 100644 --- a/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/TableQuery.cs +++ b/microsoft-azure-api/Services/Storage/Lib/DotNetCommon/Table/TableQuery.cs @@ -107,11 +107,11 @@ public IEnumerable Execute(TableRequestOptions requestOptions = null, if (executionInfo.Resolver != null) { // Execute the query. - return this.Execute(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext); + return this.ExecuteInternal(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext); } else { - return this.Execute(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext); + return this.ExecuteInternal(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext); } } @@ -152,7 +152,7 @@ public ICancellableAsyncResult BeginExecuteSegmented(TableContinuationToken curr if (executionInfo.Resolver != null) { // Execute the query. - return this.BeginExecuteQuerySegmented( + return this.BeginExecuteQuerySegmentedInternal( currentToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, @@ -164,7 +164,7 @@ public ICancellableAsyncResult BeginExecuteSegmented(TableContinuationToken curr } else { - return this.BeginExecuteQuerySegmented( + return this.BeginExecuteQuerySegmentedInternal( currentToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, @@ -259,11 +259,11 @@ public TableQuerySegment ExecuteSegmented(TableContinuationToken conti if (executionInfo.Resolver != null) { // Execute the query. - return this.ExecuteQuerySegmented(continuationToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext); + return this.ExecuteQuerySegmentedInternal(continuationToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext); } else { - return this.ExecuteQuerySegmented(continuationToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext); + return this.ExecuteQuerySegmentedInternal(continuationToken, this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext); } } @@ -283,7 +283,7 @@ public IEnumerator GetEnumerator() // TODO should we just throw here? // Standard Query Mode - return this.Execute(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, defaultRequestOptions, null /* OperationContext */).GetEnumerator(); + return this.ExecuteInternal(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, defaultRequestOptions, null /* OperationContext */).GetEnumerator(); } else { @@ -292,11 +292,11 @@ public IEnumerator GetEnumerator() if (executionInfo.Resolver != null) { // Execute the query. - return this.Execute(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext).GetEnumerator(); + return this.ExecuteInternal(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.Resolver, executionInfo.RequestOptions, executionInfo.OperationContext).GetEnumerator(); } else { - return this.Execute(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext).GetEnumerator(); + return this.ExecuteInternal(this.queryProvider.Table.ServiceClient, this.queryProvider.Table.Name, executionInfo.RequestOptions, executionInfo.OperationContext).GetEnumerator(); } } } @@ -415,7 +415,7 @@ internal class ExecutionInfo #region Internal Impl - internal IEnumerable Execute(CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext) + internal IEnumerable ExecuteInternal(CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); TableRequestOptions modifiedOptions = TableRequestOptions.ApplyDefaults(requestOptions, client); @@ -426,9 +426,9 @@ internal IEnumerable Execute(CloudTableClient client, string tableName { TableQuerySegment seg = #if SYNC - this.ExecuteQuerySegmented((TableContinuationToken)continuationToken, client, tableName, modifiedOptions, operationContext); + this.ExecuteQuerySegmentedInternal((TableContinuationToken)continuationToken, client, tableName, modifiedOptions, operationContext); #else - this.EndExecuteSegmented(this.BeginExecuteQuerySegmented((TableContinuationToken)continuationToken, client, tableName, modifiedOptions, operationContext, null /* callback */, null /* state */)); + this.EndExecuteQuerySegmentedInternal(this.BeginExecuteQuerySegmentedInternal((TableContinuationToken)continuationToken, client, tableName, modifiedOptions, operationContext, null /* callback */, null /* state */)); #endif return new ResultSegment(seg.Results) { ContinuationToken = seg.ContinuationToken }; }, @@ -438,7 +438,7 @@ internal IEnumerable Execute(CloudTableClient client, string tableName } #if SYNC - internal TableQuerySegment ExecuteQuerySegmented(TableContinuationToken token, CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext) + internal TableQuerySegment ExecuteQuerySegmentedInternal(TableContinuationToken token, CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); TableRequestOptions modifiedOptions = TableRequestOptions.ApplyDefaults(requestOptions, client); @@ -450,7 +450,7 @@ internal TableQuerySegment ExecuteQuerySegmented(TableContinuationToke } #endif - internal ICancellableAsyncResult BeginExecuteQuerySegmented(TableContinuationToken token, CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext, AsyncCallback callback, object state) + internal ICancellableAsyncResult BeginExecuteQuerySegmentedInternal(TableContinuationToken token, CloudTableClient client, string tableName, TableRequestOptions requestOptions, OperationContext operationContext, AsyncCallback callback, object state) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); @@ -465,12 +465,12 @@ internal ICancellableAsyncResult BeginExecuteQuerySegmented(TableContinuationTok state); } - internal TableQuerySegment EndExecuteQuerySegmented(IAsyncResult asyncResult) + internal TableQuerySegment EndExecuteQuerySegmentedInternal(IAsyncResult asyncResult) { return Executor.EndExecuteAsync>(asyncResult); } - internal IEnumerable Execute(CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext) + internal IEnumerable ExecuteInternal(CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); CommonUtility.AssertNotNull("resolver", resolver); @@ -483,9 +483,9 @@ internal IEnumerable Execute(CloudTableClient client, string t { TableQuerySegment seg = #if SYNC - this.ExecuteQuerySegmented((TableContinuationToken)continuationToken, client, tableName, resolver, modifiedOptions, operationContext); + this.ExecuteQuerySegmentedInternal((TableContinuationToken)continuationToken, client, tableName, resolver, modifiedOptions, operationContext); #else - this.EndExecuteQuerySegmented(this.BeginExecuteQuerySegmented((TableContinuationToken)continuationToken, client, tableName, resolver, modifiedOptions, operationContext, null /* callback */, null /* state */)); + this.EndExecuteQuerySegmentedInternal(this.BeginExecuteQuerySegmentedInternal((TableContinuationToken)continuationToken, client, tableName, resolver, modifiedOptions, operationContext, null /* callback */, null /* state */)); #endif return new ResultSegment(seg.Results) { ContinuationToken = seg.ContinuationToken }; }, @@ -495,7 +495,7 @@ internal IEnumerable Execute(CloudTableClient client, string t } #if SYNC - internal TableQuerySegment ExecuteQuerySegmented(TableContinuationToken token, CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext) + internal TableQuerySegment ExecuteQuerySegmentedInternal(TableContinuationToken token, CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); CommonUtility.AssertNotNull("resolver", resolver); @@ -508,7 +508,7 @@ internal TableQuerySegment ExecuteQuerySegmented(TableContinua return Executor.ExecuteSync(cmdToExecute, modifiedOptions.RetryPolicy, operationContext); } #endif - internal ICancellableAsyncResult BeginExecuteQuerySegmented(TableContinuationToken token, CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext, AsyncCallback callback, object state) + internal ICancellableAsyncResult BeginExecuteQuerySegmentedInternal(TableContinuationToken token, CloudTableClient client, string tableName, EntityResolver resolver, TableRequestOptions requestOptions, OperationContext operationContext, AsyncCallback callback, object state) { CommonUtility.AssertNotNullOrEmpty("tableName", tableName); CommonUtility.AssertNotNull("resolver", resolver); @@ -524,7 +524,7 @@ internal ICancellableAsyncResult BeginExecuteQuerySegmented(TableContin state); } - internal TableQuerySegment EndExecuteQuerySegmented(IAsyncResult asyncResult) + internal TableQuerySegment EndExecuteQuerySegmentedInternal(IAsyncResult asyncResult) { return Executor.EndExecuteAsync>(asyncResult); } diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStream.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStream.cs index 0f767fbf4f8c..05bc528352b9 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStream.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStream.cs @@ -34,7 +34,7 @@ internal sealed class BlobReadStream : BlobReadStreamBase, IContentTypeProvider /// /// Blob reference to read from. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. internal BlobReadStream(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(blob, accessCondition, options, operationContext) diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStreamHelper.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStreamHelper.cs index a96b61380696..b35c2e964184 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStreamHelper.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobReadStreamHelper.cs @@ -38,7 +38,7 @@ internal sealed class BlobReadStreamHelper : IRandomAccessStreamWithContentType /// /// Blob reference to read from /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. internal BlobReadStreamHelper(ICloudBlob blob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) { this.originalStream = new BlobReadStream(blob, accessCondition, options, operationContext); diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStream.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStream.cs index c868a81f65fb..ec2106e46fcc 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStream.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStream.cs @@ -32,7 +32,7 @@ internal sealed class BlobWriteStream : BlobWriteStreamBase /// /// Blob reference to write to. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(blockBlob, accessCondition, options, operationContext) { @@ -45,7 +45,7 @@ internal BlobWriteStream(CloudBlockBlob blockBlob, AccessCondition accessConditi /// Size of the page blob. /// Use true if the page blob is newly created, false otherwise. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. internal BlobWriteStream(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) : base(pageBlob, pageBlobSize, createNew, accessCondition, options, operationContext) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStreamHelper.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStreamHelper.cs index a2086d4f5887..74f1c3f4dcb0 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStreamHelper.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/BlobWriteStreamHelper.cs @@ -38,7 +38,7 @@ internal class BlobWriteStreamHelper : ICloudBlobStream /// /// Blob reference to write to. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. internal BlobWriteStreamHelper(CloudBlockBlob blockBlob, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) { this.originalStream = new BlobWriteStream(blockBlob, accessCondition, options, operationContext); @@ -52,7 +52,7 @@ internal BlobWriteStreamHelper(CloudBlockBlob blockBlob, AccessCondition accessC /// Size of the page blob. /// Use true if the page blob is newly created, false otherwise. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. internal BlobWriteStreamHelper(CloudPageBlob pageBlob, long pageBlobSize, bool createNew, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) { this.originalStream = new BlobWriteStream(pageBlob, pageBlobSize, createNew, accessCondition, options, operationContext); diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobClient.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobClient.cs index 1b4b6a3915de..7b4a090b67d2 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobClient.cs @@ -185,7 +185,7 @@ public IAsyncOperation GetBlobReferenceFromServerAsync(Uri blobUri) /// /// The URI of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A reference to the blob. [DoesServiceRequest] @@ -257,7 +257,7 @@ private RESTCommand> ListContainersImpl(string /// /// The URI of the blob. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand GetBlobReferenceImpl(Uri blobUri, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobContainer.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobContainer.cs index 51ea8a2b16a1..e32bf5de518f 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobContainer.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobContainer.cs @@ -52,7 +52,7 @@ public IAsyncAction CreateAsync() /// /// Creates the container. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -65,7 +65,7 @@ public IAsyncAction CreateAsync(BlobRequestOptions options, OperationContext ope /// Creates the container and specifies the level of access to the container's data. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -92,7 +92,7 @@ public IAsyncOperation CreateIfNotExistsAsync() /// /// Creates the container if it does not already exist. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -105,7 +105,7 @@ public IAsyncOperation CreateIfNotExistsAsync(BlobRequestOptions options, /// Creates the container if it does not already exist and specifies the level of access to the container's data. /// /// An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -165,7 +165,7 @@ public IAsyncAction DeleteAsync() /// Deletes the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -193,7 +193,7 @@ public IAsyncOperation DeleteIfExistsAsync() /// Deletes the container if it already exists. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container already existed and was deleted; otherwise, false. [DoesServiceRequest] @@ -255,7 +255,7 @@ public IAsyncOperation GetBlobReferenceFromServerAsync(string blobNa /// /// The name of the blob. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A reference to the blob. [DoesServiceRequest] @@ -302,7 +302,7 @@ public IAsyncOperation ListBlobsSegmentedAsync(string prefix, /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . [DoesServiceRequest] @@ -337,7 +337,7 @@ public IAsyncAction SetPermissionsAsync(BlobContainerPermissions permissions) /// /// The permissions to apply to the container. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -365,7 +365,7 @@ public IAsyncOperation GetPermissionsAsync() /// Gets the permissions settings for the container. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The container's permissions. [DoesServiceRequest] @@ -392,7 +392,7 @@ public IAsyncOperation ExistsAsync() /// /// Checks existence of the container. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the container exists. [DoesServiceRequest] @@ -420,7 +420,7 @@ public IAsyncAction FetchAttributesAsync() /// Retrieves the container's attributes. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -448,7 +448,7 @@ public IAsyncAction SetMetadataAsync() /// Sets the container's user-defined metadata. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -484,7 +484,7 @@ public IAsyncOperation AcquireLeaseAsync(TimeSpan? leaseTime, string pro /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. If null, default options will be used. + /// A object that specifies additional options for the request. If null, default options will be used. /// An object that represents the context for the current operation. /// The ID of the acquired lease. [DoesServiceRequest] @@ -513,7 +513,7 @@ public IAsyncAction RenewLeaseAsync(AccessCondition accessCondition) /// Renews a lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// A object that specifies any additional options for the request. If null, default options will be used. + /// A object that specifies additional options for the request. If null, default options will be used. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -544,7 +544,7 @@ public IAsyncOperation ChangeLeaseAsync(string proposedLeaseId, AccessCo /// /// A string representing the proposed lease ID for the new lease. This cannot be null. /// An object that represents the access conditions for the container, including a required lease ID. - /// A object that specifies any additional options for the request. If null, default options will be used. + /// A object that specifies additional options for the request. If null, default options will be used. /// An object that represents the context for the current operation. /// The new lease ID. [DoesServiceRequest] @@ -573,7 +573,7 @@ public IAsyncAction ReleaseLeaseAsync(AccessCondition accessCondition) /// Releases the lease on this container. /// /// An object that represents the access conditions for the container, including a required lease ID. - /// A object that specifies any additional options for the request. If null, default options will be used. + /// A object that specifies additional options for the request. If null, default options will be used. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -607,7 +607,7 @@ public IAsyncOperation BreakLeaseAsync(TimeSpan? breakPeriod) /// which will be rounded down to seconds. If null, the break period is the remainder of the current lease, /// or zero for infinite leases. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. If null, default options will be used. + /// A object that specifies additional options for the request. If null, default options will be used. /// An object that represents the context for the current operation. This object is used to track requests, and to provide additional runtime information about the operation. /// A representing the amount of time before the lease ends, to the second. [DoesServiceRequest] @@ -629,7 +629,7 @@ public IAsyncOperation BreakLeaseAsync(TimeSpan? breakPeriod, AccessCo /// greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. This parameter must not be null. + /// A object that specifies additional options for the request. This parameter must not be null. /// A RESTCommand implementing the acquire lease operation. internal RESTCommand AcquireLeaseImpl(TimeSpan? leaseTime, string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options) { @@ -659,7 +659,7 @@ internal RESTCommand AcquireLeaseImpl(TimeSpan? leaseTime, string propos /// Generates a RESTCommand for renewing a lease. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// This cannot be null. /// A RESTCommand implementing the renew lease operation. internal RESTCommand RenewLeaseImpl(AccessCondition accessCondition, BlobRequestOptions options) @@ -686,7 +686,7 @@ internal RESTCommand RenewLeaseImpl(AccessCondition accessCondition, B /// /// The proposed new lease ID. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. This cannot be null. + /// A object that specifies additional options for the request. This cannot be null. /// A RESTCommand implementing the change lease ID operation. internal RESTCommand ChangeLeaseImpl(string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options) { @@ -716,7 +716,7 @@ internal RESTCommand ChangeLeaseImpl(string proposedLeaseId, AccessCondi /// Generates a RESTCommand for releasing a lease. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// This cannot be null. /// A RESTCommand implementing the release lease operation. internal RESTCommand ReleaseLeaseImpl(AccessCondition accessCondition, BlobRequestOptions options) @@ -744,7 +744,7 @@ internal RESTCommand ReleaseLeaseImpl(AccessCondition accessCondition, /// The amount of time to allow the lease to remain, rounded down to seconds. /// If null, the break period is the remainder of the current lease, or zero for infinite leases. /// An object that represents the access conditions for the container. If null, no condition is used. - /// A object that specifies any additional options for the request. Cannot be null. + /// A object that specifies additional options for the request. Cannot be null. /// A RESTCommand implementing the break lease operation. internal RESTCommand BreakLeaseImpl(TimeSpan? breakPeriod, AccessCondition accessCondition, BlobRequestOptions options) { @@ -781,7 +781,7 @@ internal RESTCommand BreakLeaseImpl(TimeSpan? breakPeriod, AccessCondi /// /// Implementation for the Create method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that specifies whether data in the container may be accessed publicly and the level of access. /// A that creates the container. private RESTCommand CreateContainerImpl(BlobRequestOptions options, BlobContainerPublicAccessType accessType) @@ -812,7 +812,7 @@ private RESTCommand CreateContainerImpl(BlobRequestOptions options, Bl /// Implementation for the Delete method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the container. private RESTCommand DeleteContainerImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -831,7 +831,7 @@ private RESTCommand DeleteContainerImpl(AccessCondition accessConditio /// Implementation for the FetchAttributes method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand FetchAttributesImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -855,7 +855,7 @@ private RESTCommand FetchAttributesImpl(AccessCondition accessConditio /// /// Implementation for the Exists method. /// - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that checks existence. private RESTCommand ExistsImpl(BlobRequestOptions options) { @@ -885,7 +885,7 @@ private RESTCommand ExistsImpl(BlobRequestOptions options) /// Implementation for the SetMetadata method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand SetMetadataImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -915,7 +915,7 @@ private RESTCommand SetMetadataImpl(AccessCondition accessCondition, B /// /// The permissions to set. /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand SetPermissionsImpl(BlobContainerPermissions acl, AccessCondition accessCondition, BlobRequestOptions options) { @@ -943,7 +943,7 @@ private RESTCommand SetPermissionsImpl(BlobContainerPermissions acl, A /// Implementation for the GetPermissions method. /// /// An object that represents the access conditions for the container. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetPermissionsImpl(AccessCondition accessCondition, BlobRequestOptions options) { @@ -1020,7 +1020,7 @@ private IListBlobItem SelectListBlobItem(IListBlobEntry protocolItem) /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// Whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory. /// A enumeration describing which items to include in the listing. - /// An object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// The continuation token. /// A that lists the blobs. private RESTCommand> ListBlobsImpl(string prefix, int? maxResults, bool useFlatBlobListing, BlobListingDetails blobListingDetails, BlobRequestOptions options, BlobContinuationToken currentToken) diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobDirectory.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobDirectory.cs index 7dcc79292dc3..7422aa7a86c4 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobDirectory.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobDirectory.cs @@ -47,7 +47,7 @@ public IAsyncOperation ListBlobsSegmentedAsync(BlobContinuati /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A continuation token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment containing objects that implement . [DoesServiceRequest] diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobSharedImpl.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobSharedImpl.cs index a2dd887cdc11..c9e5aa54b06f 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobSharedImpl.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlobSharedImpl.cs @@ -39,7 +39,7 @@ internal static class CloudBlobSharedImpl /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that gets the stream. internal static RESTCommand GetBlobImpl(ICloudBlob blob, BlobAttributes attributes, Stream destStream, long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options) { @@ -136,7 +136,7 @@ internal static RESTCommand GetBlobImpl(ICloudBlob blob, BlobAttribute /// The blob object that is calling this method. /// The blob's attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that fetches the attributes. internal static RESTCommand FetchAttributesImpl(ICloudBlob blob, BlobAttributes attributes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -161,7 +161,7 @@ internal static RESTCommand FetchAttributesImpl(ICloudBlob blob, BlobA /// /// The blob object that is calling this method. /// The blob's attributes. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that checks existence. internal static RESTCommand ExistsImpl(ICloudBlob blob, BlobAttributes attributes, BlobRequestOptions options) { @@ -192,7 +192,7 @@ internal static RESTCommand ExistsImpl(ICloudBlob blob, BlobAttributes att /// The blob object that is calling this method. /// The blob's attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that sets the metadata. internal static RESTCommand SetMetadataImpl(ICloudBlob blob, BlobAttributes attributes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -223,7 +223,7 @@ internal static RESTCommand SetMetadataImpl(ICloudBlob blob, BlobAttri /// The blob object that is calling this method. /// The blob's attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that sets the metadata. internal static RESTCommand SetPropertiesImpl(ICloudBlob blob, BlobAttributes attributes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -255,7 +255,7 @@ internal static RESTCommand SetPropertiesImpl(ICloudBlob blob, BlobAtt /// The blob's attributes. /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that deletes the blob. internal static RESTCommand DeleteBlobImpl(ICloudBlob blob, BlobAttributes attributes, DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions options) { @@ -278,7 +278,7 @@ internal static RESTCommand DeleteBlobImpl(ICloudBlob blob, BlobAttrib /// A representing the span of time for which to acquire the lease, which will be rounded down to seconds. If null, an infinite lease will be acquired. If not null, this must be greater than zero. /// A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A implementing the acquire lease operation. internal static RESTCommand AcquireLeaseImpl(ICloudBlob blob, BlobAttributes attributes, TimeSpan? leaseTime, string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options) { @@ -310,7 +310,7 @@ internal static RESTCommand AcquireLeaseImpl(ICloudBlob blob, BlobAttrib /// The blob object that is calling this method. /// The blob's attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A implementing the renew lease operation. internal static RESTCommand RenewLeaseImpl(ICloudBlob blob, BlobAttributes attributes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -338,7 +338,7 @@ internal static RESTCommand RenewLeaseImpl(ICloudBlob blob, BlobAttrib /// The blob's attributes. /// The proposed new lease ID. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A implementing the change lease ID operation. internal static RESTCommand ChangeLeaseImpl(ICloudBlob blob, BlobAttributes attributes, string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options) { @@ -370,7 +370,7 @@ internal static RESTCommand ChangeLeaseImpl(ICloudBlob blob, BlobAttribu /// The blob object that is calling this method. /// The blob's attributes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A implementing the release lease operation. internal static RESTCommand ReleaseLeaseImpl(ICloudBlob blob, BlobAttributes attributes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -398,7 +398,7 @@ internal static RESTCommand ReleaseLeaseImpl(ICloudBlob blob, BlobAttr /// The blob's attributes. /// The amount of time to allow the lease to remain, rounded down to seconds. If null, the break period is the remainder of the current lease, or zero for infinite leases. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A implementing the break lease operation. internal static RESTCommand BreakLeaseImpl(ICloudBlob blob, BlobAttributes attributes, TimeSpan? breakPeriod, AccessCondition accessCondition, BlobRequestOptions options) { @@ -440,7 +440,7 @@ internal static RESTCommand BreakLeaseImpl(ICloudBlob blob, BlobAttrib /// The URI of the source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A delegate for setting the BlobAttributes result. /// A that starts to copy the blob. internal static RESTCommand StartCopyFromBlobImpl(ICloudBlob blob, BlobAttributes attributes, Uri source, AccessCondition sourceAccessCondition, AccessCondition destAccessCondition, BlobRequestOptions options) @@ -481,7 +481,7 @@ internal static RESTCommand StartCopyFromBlobImpl(ICloudBlob blob, BlobA /// The blob's attributes. /// The copy ID of the copy operation to abort. /// An object that represents the access conditions for the operation. If null, no condition is used. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that copies the blob. internal static RESTCommand AbortCopyImpl(ICloudBlob blob, BlobAttributes attributes, string copyId, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlockBlob.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlockBlob.cs index 5ae1fde609f0..d1d474ab6bbf 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlockBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudBlockBlob.cs @@ -55,7 +55,7 @@ public IAsyncOperation OpenReadAsync() /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. [DoesServiceRequest] @@ -83,7 +83,7 @@ public IAsyncOperation OpenWriteAsync() /// Opens a stream for writing to the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for writing to the blob. public IAsyncOperation OpenWriteAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) @@ -154,7 +154,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, long length) /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -169,7 +169,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, AccessCondition a /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -184,7 +184,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, long length, Acce /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -268,7 +268,7 @@ public IAsyncAction UploadFromFileAsync(StorageFile source) /// /// The file providing the blob content. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -305,7 +305,7 @@ public IAsyncAction UploadFromByteArrayAsync([ReadOnlyArray] byte[] buffer, int /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -333,7 +333,7 @@ public IAsyncAction UploadTextAsync(string content) /// /// The text to upload, encoded as a UTF-8 string. /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -361,7 +361,7 @@ public IAsyncAction DownloadToStreamAsync(IOutputStream target) /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -386,7 +386,7 @@ public IAsyncAction DownloadToFileAsync(StorageFile target) /// /// The target file. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -422,7 +422,7 @@ public IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] tar /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -432,7 +432,7 @@ public IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] tar } /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -457,7 +457,7 @@ public IAsyncOperation DownloadTextAsync() /// Downloads the blob's contents as a string. /// /// An object that represents the access conditions for the blob. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The contents of the blob, as a string. public IAsyncOperation DownloadTextAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext) @@ -474,13 +474,13 @@ public IAsyncOperation DownloadTextAsync(AccessCondition accessCondition } /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -500,7 +500,7 @@ public IAsyncAction DownloadRangeToStreamAsync(IOutputStream target, long? offse } /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -514,14 +514,14 @@ public IAsyncOperation DownloadRangeToByteArrayAsync([WriteOnlyArray] byte[ } /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -550,7 +550,7 @@ public IAsyncOperation ExistsAsync() /// /// Checks existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. [DoesServiceRequest] @@ -578,7 +578,7 @@ public IAsyncAction FetchAttributesAsync() /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -606,7 +606,7 @@ public IAsyncAction SetMetadataAsync() /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -635,7 +635,7 @@ public IAsyncAction SetPropertiesAsync() /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -665,7 +665,7 @@ public IAsyncAction DeleteAsync() /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -694,7 +694,7 @@ public IAsyncOperation DeleteIfExistsAsync() /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob already existed and was deleted; otherwise, false. [DoesServiceRequest] @@ -755,7 +755,7 @@ public IAsyncOperation CreateSnapshotAsync() /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// An object that specifies any additional options for the request, or null. + /// An object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// A blob snapshot. [DoesServiceRequest] @@ -951,7 +951,7 @@ public IAsyncAction PutBlockAsync(string blockId, IInputStream blockData, string /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -1014,7 +1014,7 @@ public IAsyncAction PutBlockListAsync(IEnumerable blockList) /// /// An enumerable collection of block IDs, as base64-encoded strings. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -1045,7 +1045,7 @@ public IAsyncOperation> DownloadBlockListAsync() /// One of the enumeration values that indicates whether to return /// committed blocks, uncommitted blocks, or both. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of objects implementing . [DoesServiceRequest] @@ -1096,7 +1096,7 @@ public IAsyncOperation StartCopyFromBlobAsync(CloudBlockBlob source) /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -1122,7 +1122,7 @@ public IAsyncOperation StartCopyFromBlobAsync(Uri source, AccessConditio /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -1151,7 +1151,7 @@ public IAsyncAction AbortCopyAsync(string copyId) /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An asynchronous handler called when the operation is complete. [DoesServiceRequest] @@ -1170,7 +1170,7 @@ public IAsyncAction AbortCopyAsync(string copyId, AccessCondition accessConditio /// /// A collection of name-value pairs defining the metadata of the snapshot, or null. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the snapshot. /// If the metadata parameter is null then no metadata is associated with the request. internal RESTCommand CreateSnapshotImpl(IDictionary metadata, AccessCondition accessCondition, BlobRequestOptions options) @@ -1209,7 +1209,7 @@ internal RESTCommand CreateSnapshotImpl(IDictionary /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the stream. private RESTCommand PutBlobImpl(Stream stream, long? length, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1249,7 +1249,7 @@ private RESTCommand PutBlobImpl(Stream stream, long? length, string co /// The block ID. /// The content MD5. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that uploads the block. internal RESTCommand PutBlockImpl(Stream source, string blockId, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1273,7 +1273,7 @@ internal RESTCommand PutBlockImpl(Stream source, string blockId, strin /// /// The blocks to upload. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that uploads the block list. internal RESTCommand PutBlockListImpl(IEnumerable blocks, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1310,7 +1310,7 @@ internal RESTCommand PutBlockListImpl(IEnumerable bl /// /// The types of blocks. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the download block list. internal RESTCommand> GetBlockListImpl(BlockListingFilter typesOfBlocks, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudPageBlob.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudPageBlob.cs index c403e68e7570..018e56402f71 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudPageBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/CloudPageBlob.cs @@ -53,7 +53,7 @@ public IAsyncOperation OpenReadAsync() /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. [DoesServiceRequest] @@ -84,7 +84,7 @@ public IAsyncOperation OpenWriteAsync(long? size) /// /// The size of the write operation, in bytes. The size must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for writing to the blob. [DoesServiceRequest] @@ -148,7 +148,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, long length) /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -163,7 +163,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, AccessCondition a /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -178,7 +178,7 @@ public IAsyncAction UploadFromStreamAsync(IInputStream source, long length, Acce /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -240,7 +240,7 @@ public IAsyncAction UploadFromFileAsync(StorageFile source) /// /// The file providing the blob content. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -277,7 +277,7 @@ public IAsyncAction UploadFromByteArrayAsync([ReadOnlyArray] byte[] buffer, int /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -305,7 +305,7 @@ public IAsyncAction DownloadToStreamAsync(IOutputStream target) /// /// The target stream. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -330,7 +330,7 @@ public IAsyncAction DownloadToFileAsync(StorageFile target) /// /// The target file. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -366,7 +366,7 @@ public IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] tar /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -376,7 +376,7 @@ public IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] tar } /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. @@ -389,13 +389,13 @@ public IAsyncAction DownloadRangeToStreamAsync(IOutputStream target, long? offse } /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The offset at which to begin downloading the blob, in bytes. /// The length of the data to download from the blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -415,7 +415,7 @@ public IAsyncAction DownloadRangeToStreamAsync(IOutputStream target, long? offse } /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -429,14 +429,14 @@ public IAsyncOperation DownloadRangeToByteArrayAsync([WriteOnlyArray] byte[ } /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. [DoesServiceRequest] @@ -468,7 +468,7 @@ public IAsyncAction CreateAsync(long size) /// /// The maximum size of the page blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -498,7 +498,7 @@ public IAsyncAction ResizeAsync(long size) /// /// The maximum size of the page blob, in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -530,7 +530,7 @@ public IAsyncAction SetSequenceNumberAsync(SequenceNumberAction sequenceNumberAc /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if is equal to . /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -557,7 +557,7 @@ public IAsyncOperation ExistsAsync() /// /// Checks existence of the blob. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. [DoesServiceRequest] @@ -585,7 +585,7 @@ public IAsyncAction FetchAttributesAsync() /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -615,7 +615,7 @@ public IAsyncOperation> GetPageRangesAsync() /// The starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of page ranges. [DoesServiceRequest] @@ -643,7 +643,7 @@ public IAsyncAction SetMetadataAsync() /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -672,7 +672,7 @@ public IAsyncAction SetPropertiesAsync() /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -702,7 +702,7 @@ public IAsyncAction DeleteAsync() /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -731,7 +731,7 @@ public IAsyncOperation DeleteIfExistsAsync() /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob already existed and was deleted; otherwise, false. [DoesServiceRequest] @@ -792,7 +792,7 @@ public IAsyncOperation CreateSnapshotAsync() /// /// A collection of name-value pairs defining the metadata of the snapshot. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request, or null. + /// A object that specifies additional options for the request, or null. /// An object that represents the context for the current operation. /// A blob snapshot. [DoesServiceRequest] @@ -988,7 +988,7 @@ public IAsyncAction WritePagesAsync(IInputStream pageData, long startOffset, str /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -1053,7 +1053,7 @@ public IAsyncAction ClearPagesAsync(long startOffset, long length) /// The offset at which to begin clearing pages, in bytes. The offset must be a multiple of 512. /// The length of the data range to be cleared, in bytes. The length must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -1104,7 +1104,7 @@ public IAsyncOperation StartCopyFromBlobAsync(CloudPageBlob source) /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -1130,7 +1130,7 @@ public IAsyncOperation StartCopyFromBlobAsync(Uri source, AccessConditio /// The URI of a source blob. /// An object that represents the access conditions for the source blob. If null, no condition is used. /// An object that represents the access conditions for the destination blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The copy ID associated with the copy operation. /// @@ -1159,7 +1159,7 @@ public IAsyncAction AbortCopyAsync(string copyId) /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -1178,7 +1178,7 @@ public IAsyncAction AbortCopyAsync(string copyId, AccessCondition accessConditio /// /// The size in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the blob. private RESTCommand CreateImpl(long sizeInBytes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1208,7 +1208,7 @@ private RESTCommand CreateImpl(long sizeInBytes, AccessCondition acces /// /// The size in bytes. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand ResizeImpl(long sizeInBytes, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1235,7 +1235,7 @@ private RESTCommand ResizeImpl(long sizeInBytes, AccessCondition acces /// A value of type , indicating the operation to perform on the sequence number. /// The sequence number. Set this parameter to null if this operation is an increment action. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand SetSequenceNumberImpl(SequenceNumberAction sequenceNumberAction, long? sequenceNumber, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1260,7 +1260,7 @@ private RESTCommand SetSequenceNumberImpl(SequenceNumberAction sequenc /// /// A collection of name-value pairs defining the metadata of the snapshot, or null. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the snapshot. /// If the metadata parameter is null then no metadata is associated with the request. private RESTCommand CreateSnapshotImpl(IDictionary metadata, AccessCondition accessCondition, BlobRequestOptions options) @@ -1301,7 +1301,7 @@ private RESTCommand CreateSnapshotImpl(IDictionaryThe starting offset of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// The length of the data range over which to list page ranges, in bytes. Must be a multiple of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A for getting the page ranges. private RESTCommand> GetPageRangesImpl(long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1341,7 +1341,7 @@ private RESTCommand> GetPageRangesImpl(long? offset, long /// An optional hash value that will be used to set the property /// on the blob. May be null or an empty string. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that writes the pages. private RESTCommand PutPageImpl(Stream pageData, long startOffset, string contentMD5, AccessCondition accessCondition, BlobRequestOptions options) { @@ -1385,7 +1385,7 @@ private RESTCommand PutPageImpl(Stream pageData, long startOffset, str /// The start offset. Must be multiples of 512. /// Length of the data range to be cleared. Must be multiples of 512. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that writes the pages. private RESTCommand ClearPageImpl(long startOffset, long length, AccessCondition accessCondition, BlobRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/ICloudBlob.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/ICloudBlob.cs index 2b43a70a0746..ee0c8c39ddce 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Blob/ICloudBlob.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Blob/ICloudBlob.cs @@ -32,7 +32,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Opens a stream for reading from the blob. /// /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A stream to be used for reading from the blob. IAsyncOperation OpenReadAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -49,7 +49,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// The stream providing the blob content. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction UploadFromStreamAsync(IInputStream source, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -68,7 +68,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// The stream providing the blob content. /// The number of bytes to write from the source stream at its current position. /// An object that represents the access conditions for the blob. If null, no condition is used. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction UploadFromStreamAsync(IInputStream source, long length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -84,7 +84,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// The file providing the blob content. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction UploadFromFileAsync(StorageFile source, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -105,7 +105,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// The zero-based byte offset in buffer at which to begin uploading bytes to the blob. /// The number of bytes to be written to the blob. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction UploadFromByteArrayAsync([ReadOnlyArray] byte[] buffer, int index, int count, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -122,7 +122,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// The target stream. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction DownloadToStreamAsync(IOutputStream target, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -139,13 +139,13 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// The target file. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction DownloadToFileAsync(StorageFile target, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -153,18 +153,18 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] target, int index); /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. IAsyncOperation DownloadToByteArrayAsync([WriteOnlyArray] byte[] target, int index, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. @@ -173,19 +173,19 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc IAsyncAction DownloadRangeToStreamAsync(IOutputStream target, long? offset, long? length); /// - /// Downloads the contents of a blob to a stream. + /// Downloads a range of bytes from a blob to a stream. /// /// The target stream. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction DownloadRangeToStreamAsync(IOutputStream target, long? offset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. @@ -195,28 +195,28 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc IAsyncOperation DownloadRangeToByteArrayAsync([WriteOnlyArray] byte[] target, int index, long? blobOffset, long? length); /// - /// Downloads the contents of a blob to a byte array. + /// Downloads a range of bytes from a blob to a byte array. /// /// The target byte array. /// The starting offset in the byte array. /// The starting offset of the data range, in bytes. /// The length of the data range, in bytes. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The total number of bytes read into the buffer. IAsyncOperation DownloadRangeToByteArrayAsync([WriteOnlyArray] byte[] target, int index, long? blobOffset, long? length, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); /// - /// Checks existence of the blob. + /// Checks whether the blob exists. /// /// true if the blob exists. IAsyncOperation ExistsAsync(); /// - /// Checks existence of the blob. + /// Checks whether the blob exists. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob exists. IAsyncOperation ExistsAsync(BlobRequestOptions options, OperationContext operationContext); @@ -231,7 +231,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Populates a blob's properties and metadata. /// /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction FetchAttributesAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -246,7 +246,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Updates the blob's metadata. /// /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction SetMetadataAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -261,7 +261,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Updates the blob's properties. /// /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction SetPropertiesAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -277,7 +277,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction DeleteAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -293,7 +293,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// Whether to only delete the blob, to delete the blob and all snapshots, or to only delete the snapshots. /// An object that represents the access conditions for the container. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the blob did not already exist and was created; otherwise false. IAsyncOperation DeleteIfExistsAsync(DeleteSnapshotsOption deleteSnapshotsOption, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -314,7 +314,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// which will be rounded down to seconds. /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The ID of the acquired lease. IAsyncOperation AcquireLeaseAsync(TimeSpan? leaseTime, string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -330,7 +330,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Renews a lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction RenewLeaseAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -348,7 +348,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// A string representing the proposed lease ID for the new lease. /// An object that represents the access conditions for the blob, including a required lease ID. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The new lease ID. IAsyncOperation ChangeLeaseAsync(string proposedLeaseId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -364,7 +364,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// Releases the lease on this blob. /// /// An object that represents the access conditions for the blob, including a required lease ID. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction ReleaseLeaseAsync(AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -383,7 +383,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// A representing the amount of time to allow the lease to remain, /// which will be rounded down to seconds. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A representing the amount of time before the lease ends, to the second. IAsyncOperation BreakLeaseAsync(TimeSpan? breakPeriod, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); @@ -400,7 +400,7 @@ public partial interface ICloudBlob : IListBlobItem, IRandomAccessStreamReferenc /// /// A string identifying the copy operation. /// An object that represents the access conditions for the blob. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. IAsyncAction AbortCopyAsync(string copyId, AccessCondition accessCondition, BlobRequestOptions options, OperationContext operationContext); diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Properties/AssemblyInfo.cs index afb20a377a75..1d24a7f620d3 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Properties/AssemblyInfo.cs @@ -25,8 +25,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")] [assembly: ComVisible(false)] #if SIGN diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueue.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueue.cs index 4efc0fbca784..c821c860ad46 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueue.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueue.cs @@ -51,7 +51,7 @@ public IAsyncAction CreateAsync() /// /// Creates the queue. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -80,7 +80,7 @@ public IAsyncOperation CreateIfNotExistsAsync() /// /// Creates the queue if it does not already exist. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the queue did not already exist and was created; otherwise false. [DoesServiceRequest] @@ -145,7 +145,7 @@ public IAsyncAction DeleteAsync() /// /// Deletes the queue. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -174,7 +174,7 @@ public IAsyncOperation DeleteIfExistsAsync() /// /// Deletes the queue if it already exists. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the queue already existed and was deleted; otherwise, false. [DoesServiceRequest] @@ -235,7 +235,7 @@ public IAsyncAction SetPermissionsAsync(QueuePermissions permissions) /// Sets permissions for the queue. /// /// The permissions to apply to the queue. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -264,7 +264,7 @@ public IAsyncOperation GetPermissionsAsync() /// /// Gets the permissions settings for the queue. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// The queue's permissions. [DoesServiceRequest] @@ -293,7 +293,7 @@ public IAsyncOperation ExistsAsync() /// /// Checks existence of the queue. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// true if the queue exists. [DoesServiceRequest] @@ -322,7 +322,7 @@ public IAsyncAction FetchAttributesAsync() /// /// Retrieves the queue's attributes. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -351,7 +351,7 @@ public IAsyncAction SetMetadataAsync() /// /// Sets the queue's user-defined metadata. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -385,7 +385,7 @@ public IAsyncAction AddMessageAsync(CloudQueueMessage message) /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -420,7 +420,7 @@ public IAsyncAction UpdateMessageAsync(CloudQueueMessage message, TimeSpan visib /// The message to update. /// The visibility timeout interval. /// The message update fields. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -451,7 +451,7 @@ public IAsyncAction DeleteMessageAsync(CloudQueueMessage message) /// Deletes the message. /// /// The message to delete. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -477,7 +477,7 @@ public IAsyncAction DeleteMessageAsync(string messageId, string popReceipt) /// /// The message ID. /// The pop receipt value. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -509,7 +509,7 @@ public IAsyncOperation> GetMessagesAsync(int mess /// /// The number of messages to retrieve. /// The visibility timeout interval. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of messages. [DoesServiceRequest] @@ -539,7 +539,7 @@ public IAsyncOperation GetMessageAsync() /// Gets a single message from the queue. /// /// The visibility timeout interval. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A message. [DoesServiceRequest] @@ -570,7 +570,7 @@ public IAsyncOperation> PeekMessagesAsync(int mes /// Peeks a list of messages from the queue. /// /// The number of messages to retrieve. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An enumerable collection of messages. [DoesServiceRequest] @@ -599,7 +599,7 @@ public IAsyncOperation PeekMessageAsync() /// /// Peeks a single message from the queue. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A message. [DoesServiceRequest] @@ -628,7 +628,7 @@ public IAsyncAction ClearAsync() /// /// Clears the messages of the queue. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that represents the context for the current operation. /// An that represents an asynchronous action. [DoesServiceRequest] @@ -647,7 +647,7 @@ public IAsyncAction ClearAsync(QueueRequestOptions options, OperationContext ope /// /// Implementation for the Create method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that creates the queue. private RESTCommand CreateQueueImpl(QueueRequestOptions options) { @@ -678,7 +678,7 @@ private RESTCommand CreateQueueImpl(QueueRequestOptions options) /// /// Implementation for the Delete method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the queue. private RESTCommand DeleteQueueImpl(QueueRequestOptions options) { @@ -696,7 +696,7 @@ private RESTCommand DeleteQueueImpl(QueueRequestOptions options) /// /// Implementation for the Clear method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the queue. private RESTCommand ClearImpl(QueueRequestOptions options) { @@ -714,7 +714,7 @@ private RESTCommand ClearImpl(QueueRequestOptions options) /// /// Implementation for the FetchAttributes method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that fetches the attributes. private RESTCommand FetchAttributesImpl(QueueRequestOptions options) { @@ -737,7 +737,7 @@ private RESTCommand FetchAttributesImpl(QueueRequestOptions options) /// /// Implementation for the Exists method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that checks existence. private RESTCommand ExistsImpl(QueueRequestOptions options) { @@ -768,7 +768,7 @@ private RESTCommand ExistsImpl(QueueRequestOptions options) /// /// Implementation for the SetMetadata method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the metadata. private RESTCommand SetMetadataImpl(QueueRequestOptions options) { @@ -797,7 +797,7 @@ private RESTCommand SetMetadataImpl(QueueRequestOptions options) /// Implementation for the SetPermissions method. /// /// The permissions to set. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand SetPermissionsImpl(QueuePermissions acl, QueueRequestOptions options) { @@ -824,7 +824,7 @@ private RESTCommand SetPermissionsImpl(QueuePermissions acl, QueueRequ /// /// Implementation for the GetPermissions method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetPermissionsImpl(QueueRequestOptions options) { @@ -857,7 +857,7 @@ private RESTCommand GetPermissionsImpl(QueueRequestOptions opt /// The maximum time to allow the message to be in the queue, or null. /// The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand AddMessageImpl(CloudQueueMessage message, TimeSpan? timeToLive, TimeSpan? initialVisibilityDelay, QueueRequestOptions options) { @@ -888,7 +888,7 @@ private RESTCommand AddMessageImpl(CloudQueueMessage message, TimeSpan /// The message to update. /// The visibility timeout interval. /// The message update fields. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that sets the permissions. private RESTCommand UpdateMessageImpl(CloudQueueMessage message, TimeSpan visibilityTimeout, MessageUpdateFields updateFields, QueueRequestOptions options) { @@ -934,7 +934,7 @@ private RESTCommand UpdateMessageImpl(CloudQueueMessage message, TimeS /// /// The message ID. /// The pop receipt value. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that deletes the queue. private RESTCommand DeleteMessageImpl(string messageId, string popReceipt, QueueRequestOptions options) { @@ -955,7 +955,7 @@ private RESTCommand DeleteMessageImpl(string messageId, string popRece /// /// The message count. /// The visibility timeout interval. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand> GetMessagesImpl(int messageCount, TimeSpan? visibilityTimeout, QueueRequestOptions options) { @@ -987,7 +987,7 @@ private RESTCommand> GetMessagesImpl(int messageC /// Implementation for the PeekMessages method. /// /// The message count. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand> PeekMessagesImpl(int messageCount, QueueRequestOptions options) { @@ -1019,7 +1019,7 @@ private RESTCommand> PeekMessagesImpl(int message /// Implementation for the GetPermissions method. /// /// The visibility timeout interval. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetMessageImpl(TimeSpan? visibilityTimeout, QueueRequestOptions options) { @@ -1053,7 +1053,7 @@ private RESTCommand GetMessageImpl(TimeSpan? visibilityTimeou /// /// Implementation for the PeekMessage method. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand PeekMessageImpl(QueueRequestOptions options) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueueClient.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueueClient.cs index ffb0791da0b2..7ce81c06c0a9 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueueClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Queue/CloudQueueClient.cs @@ -110,7 +110,7 @@ public IAsyncOperation ListQueuesSegmentedAsync(string prefi /// A non-negative integer value that indicates the maximum number of results to be returned /// in the result segment, up to the per-operation limit of 5000. If this value is null, the maximum possible number of results will be returned, up to 5000. /// A token returned by a previous listing operation. - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// An object that represents the context for the current operation. /// A result segment of queues. public IAsyncOperation ListQueuesSegmentedAsync(string prefix, QueueListingDetails detailsIncluded, int? maxResults, QueueContinuationToken currentToken, QueueRequestOptions options, OperationContext operationContext) @@ -197,7 +197,7 @@ public IAsyncOperation GetServicePropertiesAsync() /// /// Gets the properties of the blob service. /// - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. /// The blob service properties. [DoesServiceRequest] @@ -248,7 +248,7 @@ public IAsyncAction SetServicePropertiesAsync(ServiceProperties properties) /// Gets the properties of the blob service. /// /// The queue service properties. - /// A object that specifies any additional options for the request. Specifying null will use the default request options from the associated service client (). + /// A object that specifies additional options for the request. Specifying null will use the default request options from the associated service client (). /// An object that represents the context for the current operation. /// The blob service properties. [DoesServiceRequest] diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTable.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTable.cs index b32a7f948ca7..0a3f8ede6c1e 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTable.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTable.cs @@ -140,7 +140,7 @@ public IAsyncAction CreateAsync() /// /// Creates the Table. /// - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object for tracking the current operation. /// An that represents an asynchronous action. public IAsyncAction CreateAsync(TableRequestOptions requestOptions, OperationContext operationContext) @@ -433,7 +433,7 @@ public IAsyncOperation GetPermissionsAsync(TableRequestOptions /// /// Implementation for the GetPermissions method. /// - /// An object that specifies any additional options for the request. + /// An object that specifies additional options for the request. /// A that gets the permissions. private RESTCommand GetPermissionsImpl(TableRequestOptions requestOptions) { diff --git a/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTableClient.cs b/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTableClient.cs index da6d2abaf4b9..b5435d06190b 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTableClient.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RT/Table/CloudTableClient.cs @@ -145,7 +145,7 @@ public IAsyncOperation ListTablesSegmentedAsync(string prefi /// A non-negative integer value that indicates the maximum number of results to be returned at a time, up to the /// per-operation limit of 5000. If this value is null the maximum possible number of results will be returned, up to 5000. /// A token returned by a previous listing operation. - /// A object that specifies any additional options for the request. + /// A object that specifies additional options for the request. /// An object that provides information on how the operation executed. /// The result segment containing the collection of tables. public IAsyncOperation ListTablesSegmentedAsync(string prefix, int? maxResults, TableContinuationToken currentToken, TableRequestOptions requestOptions, OperationContext operationContext) diff --git a/microsoft-azure-api/Services/Storage/Lib/RTTable/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Lib/RTTable/Properties/AssemblyInfo.cs index e0f47694d995..24c45b4b4b04 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RTTable/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Lib/RTTable/Properties/AssemblyInfo.cs @@ -25,8 +25,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")] [assembly: ComVisible(false)] #if SIGN @@ -40,4 +40,4 @@ #else [assembly: InternalsVisibleTo("Microsoft.WindowsAzure.StorageRT.Test")] #endif -[assembly: NeutralResourcesLanguageAttribute("en-US")] +[assembly: NeutralResourcesLanguageAttribute("en-US")] \ No newline at end of file diff --git a/microsoft-azure-api/Services/Storage/Lib/RTTable/WindowsAzure.Storage.Table-Preview.nuspec b/microsoft-azure-api/Services/Storage/Lib/RTTable/WindowsAzure.Storage.Table-Preview.nuspec index 77d89488e546..aa48f62a5267 100644 --- a/microsoft-azure-api/Services/Storage/Lib/RTTable/WindowsAzure.Storage.Table-Preview.nuspec +++ b/microsoft-azure-api/Services/Storage/Lib/RTTable/WindowsAzure.Storage.Table-Preview.nuspec @@ -2,7 +2,7 @@ WindowsAzure.Storage.Table-Preview - 2.1.0.1-preview + 2.1.0.2-preview Windows Azure Storage Tables Extension for Windows Runtime Microsoft Microsoft @@ -15,7 +15,7 @@ Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/ A table extension library for Windows Runtime for working with Windows Azure Storage tables. Microsoft, Azure, Storage, Table, Scalable, winrt, windowsazureofficial - + @@ -27,4 +27,4 @@ Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/ - \ No newline at end of file + diff --git a/microsoft-azure-api/Services/Storage/Lib/WP/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Lib/WP/Properties/AssemblyInfo.cs index 5117d15ffb41..40424cd214fd 100644 --- a/microsoft-azure-api/Services/Storage/Lib/WP/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Lib/WP/Properties/AssemblyInfo.cs @@ -32,8 +32,8 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.1.0.0")] -[assembly: AssemblyFileVersion("2.1.0.1")] +[assembly: AssemblyVersion("2.1.0.2")] +[assembly: AssemblyFileVersion("2.1.0.2")] [assembly: NeutralResourcesLanguageAttribute("en-US")] #if SIGN diff --git a/microsoft-azure-api/Services/Storage/Lib/WindowsAzure.Storage-Preview.nuspec b/microsoft-azure-api/Services/Storage/Lib/WindowsAzure.Storage-Preview.nuspec index 9d95b1d77b9f..f63c6a86b835 100644 --- a/microsoft-azure-api/Services/Storage/Lib/WindowsAzure.Storage-Preview.nuspec +++ b/microsoft-azure-api/Services/Storage/Lib/WindowsAzure.Storage-Preview.nuspec @@ -2,7 +2,7 @@ WindowsAzure.Storage-Preview - 2.1.0-preview + 2.1.0.2-preview Windows Azure Storage Microsoft Microsoft diff --git a/microsoft-azure-api/Services/Storage/Test/Unit/DotNet40/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Test/Unit/DotNet40/Properties/AssemblyInfo.cs index d0cb1b9cb5d8..006bd1768597 100644 --- a/microsoft-azure-api/Services/Storage/Test/Unit/DotNet40/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Test/Unit/DotNet40/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // 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")] diff --git a/microsoft-azure-api/Services/Storage/Test/Unit/DotNetCommon/Table/TableQueryableTests.cs b/microsoft-azure-api/Services/Storage/Test/Unit/DotNetCommon/Table/TableQueryableTests.cs index 219a6eddcb7c..9b3e0a3910f8 100644 --- a/microsoft-azure-api/Services/Storage/Test/Unit/DotNetCommon/Table/TableQueryableTests.cs +++ b/microsoft-azure-api/Services/Storage/Test/Unit/DotNetCommon/Table/TableQueryableTests.cs @@ -167,6 +167,76 @@ public void MyTestCleanup() #region Sync + [TestMethod] + [Description("IQueryable - A test to validate basic table query")] + [TestCategory(ComponentCategory.Table)] + [TestCategory(TestTypeCategory.UnitTest)] + [TestCategory(SmokeTestCategory.NonSmoke)] + [TestCategory(TenantTypeCategory.DevStore), TestCategory(TenantTypeCategory.DevFabric), TestCategory(TenantTypeCategory.Cloud)] + public void TableQueryableExecuteQuerySync() + { + TableQuery query = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).AsTableQuery(); + + IEnumerable seg = query.Execute(); + + foreach (DynamicTableEntity ent in seg) + { + Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); + Assert.AreEqual(ent.Properties.Count, 4); + } + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuery(query).ToList(); + + foreach (DynamicTableEntity ent in segList) + { + Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); + Assert.AreEqual(ent.Properties.Count, 4); + } + } + + [TestMethod] + [Description("IQueryable - A test to validate basic table query")] + [TestCategory(ComponentCategory.Table)] + [TestCategory(TestTypeCategory.UnitTest)] + [TestCategory(SmokeTestCategory.NonSmoke)] + [TestCategory(TenantTypeCategory.DevStore), TestCategory(TenantTypeCategory.DevFabric), TestCategory(TenantTypeCategory.Cloud)] + public void TableQueryableExecuteQueryWithResolverSync() + { + TableQuery query = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).Resolve((pk, rk, ts, props, etag) => props["a"].StringValue).AsTableQuery(); + + IEnumerable seg = query.Execute(); + + int count = 0; + foreach (string ent in seg) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); + + TableQuery query2 = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).AsTableQuery(); + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuery(query2, (pk, rk, ts, props, etag) => props["a"].StringValue).ToList(); + + count = 0; + foreach (string ent in segList) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); + } + [TestMethod] [Description("IQueryable - A test to validate basic table query")] [TestCategory(ComponentCategory.Table)] @@ -186,6 +256,55 @@ public void TableQueryableBasicSync() Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); Assert.AreEqual(ent.Properties.Count, 4); } + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuerySegmented(query, null).ToList(); + + foreach (DynamicTableEntity ent in segList) + { + Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); + Assert.AreEqual(ent.Properties.Count, 4); + } + } + + [TestMethod] + [Description("IQueryable - A test to validate basic table query")] + [TestCategory(ComponentCategory.Table)] + [TestCategory(TestTypeCategory.UnitTest)] + [TestCategory(SmokeTestCategory.NonSmoke)] + [TestCategory(TenantTypeCategory.DevStore), TestCategory(TenantTypeCategory.DevFabric), TestCategory(TenantTypeCategory.Cloud)] + public void TableQueryableBasicWithResolverSync() + { + TableQuery query = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).Resolve((pk, rk, ts, props, etag) => props["a"].StringValue).AsTableQuery(); + + TableQuerySegment seg = query.ExecuteSegmented(null); + + int count = 0; + foreach (string ent in seg) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); + + TableQuery query2 = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).AsTableQuery(); + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuerySegmented(query2, (pk, rk, ts, props, etag) => props["a"].StringValue, null).ToList(); + + count = 0; + foreach (string ent in segList) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); } [TestMethod] @@ -774,7 +893,6 @@ public void TableQueryableWithContinuationSync() #endregion #region APM - [TestMethod] [Description("IQueryable - A test to validate basic table query APM")] [TestCategory(ComponentCategory.Table)] @@ -806,6 +924,88 @@ public void TableGenericQueryableBasicAPM() Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); Assert.AreEqual(ent.Properties.Count, 4); } + + List segList = null; + using (ManualResetEvent evt = new ManualResetEvent(false)) + { + IAsyncResult asyncRes = null; + currentTable.BeginExecuteQuerySegmented(query, null, (res) => + { + asyncRes = res; + evt.Set(); + }, null); + evt.WaitOne(); + + segList = currentTable.EndExecuteQuerySegmented(asyncRes).ToList(); + } + + foreach (DynamicTableEntity ent in segList) + { + Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); + Assert.AreEqual(ent.Properties.Count, 4); + } + } + + [TestMethod] + [Description("IQueryable - A test to validate basic table query APM")] + [TestCategory(ComponentCategory.Table)] + [TestCategory(TestTypeCategory.UnitTest)] + [TestCategory(SmokeTestCategory.NonSmoke)] + [TestCategory(TenantTypeCategory.DevStore), TestCategory(TenantTypeCategory.DevFabric), TestCategory(TenantTypeCategory.Cloud)] + public void TableGenericQueryableBasicWithResolverAPM() + { + TableQuery query = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).Resolve((pk, rk, ts, props, etag) => props["a"].StringValue).AsTableQuery(); + + TableQuerySegment seg = null; + using (ManualResetEvent evt = new ManualResetEvent(false)) + { + IAsyncResult asyncRes = null; + query.BeginExecuteSegmented(null, (res) => + { + asyncRes = res; + evt.Set(); + }, null); + evt.WaitOne(); + + seg = query.EndExecuteSegmented(asyncRes); + } + + int count = 0; + foreach (string ent in seg) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); + + TableQuery query2 = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).AsTableQuery(); + List segList = null; + using (ManualResetEvent evt = new ManualResetEvent(false)) + { + IAsyncResult asyncRes = null; + currentTable.BeginExecuteQuerySegmented(query2, (pk, rk, ts, props, etag) => props["a"].StringValue, null, (res) => + { + asyncRes = res; + evt.Set(); + }, null); + evt.WaitOne(); + + segList = currentTable.EndExecuteQuerySegmented(asyncRes).ToList(); + } + + count = 0; + foreach (string ent in segList) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); } [TestMethod] @@ -890,6 +1090,55 @@ public void TableQueryableBasicTask() Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); Assert.AreEqual(ent.Properties.Count, 4); } + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuerySegmentedAsync(query, null).Result.ToList(); + + foreach (DynamicTableEntity ent in segList) + { + Assert.AreEqual(ent.PartitionKey, "tables_batch_1"); + Assert.AreEqual(ent.Properties.Count, 4); + } + } + + [TestMethod] + [Description("IQueryable - A test to validate basic table query")] + [TestCategory(ComponentCategory.Table)] + [TestCategory(TestTypeCategory.UnitTest)] + [TestCategory(SmokeTestCategory.NonSmoke)] + [TestCategory(TenantTypeCategory.DevStore), TestCategory(TenantTypeCategory.DevFabric), TestCategory(TenantTypeCategory.Cloud)] + public void TableQueryableBasicWithResolverTask() + { + TableQuery query = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).Resolve((pk, rk, ts, props, etag) => props["a"].StringValue).AsTableQuery(); + + TableQuerySegment seg = query.ExecuteSegmentedAsync(null).Result; + + int count = 0; + foreach (string ent in seg) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); + + TableQuery query2 = (from ent in currentTable.CreateQuery() + where ent.PartitionKey == "tables_batch_1" + select ent).AsTableQuery(); + + // Try running the query on the Table object. + List segList = currentTable.ExecuteQuerySegmentedAsync(query2, (pk, rk, ts, props, etag) => props["a"].StringValue, null).Result.ToList(); + + count = 0; + foreach (string ent in segList) + { + Assert.AreEqual("a", ent); + count++; + } + + Assert.AreEqual(100, count); } [TestMethod] diff --git a/microsoft-azure-api/Services/Storage/Test/Unit/RT/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Test/Unit/RT/Properties/AssemblyInfo.cs index 59bf75b6950d..85db3b46cebb 100644 --- a/microsoft-azure-api/Services/Storage/Test/Unit/RT/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Test/Unit/RT/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ // 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")] diff --git a/microsoft-azure-api/Services/Storage/Test/Unit/WP/Properties/AssemblyInfo.cs b/microsoft-azure-api/Services/Storage/Test/Unit/WP/Properties/AssemblyInfo.cs index 520c2b888680..bdfac17159b9 100644 --- a/microsoft-azure-api/Services/Storage/Test/Unit/WP/Properties/AssemblyInfo.cs +++ b/microsoft-azure-api/Services/Storage/Test/Unit/WP/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("2.1.0.0")] -[assembly: AssemblyFileVersion("2.1.0.1")] +[assembly: AssemblyVersion("2.1.0.2")] +[assembly: AssemblyFileVersion("2.1.0.2")] [assembly: NeutralResourcesLanguageAttribute("en-US")] diff --git a/microsoft-azure-api/Services/Storage/changelog.txt b/microsoft-azure-api/Services/Storage/changelog.txt index 1bd76af4414d..b0f1606a904f 100644 --- a/microsoft-azure-api/Services/Storage/changelog.txt +++ b/microsoft-azure-api/Services/Storage/changelog.txt @@ -58,7 +58,7 @@ Issues fixed in 2.0.5.1 : - All: Make sure the response stream is drained to prevent socket exhaustion. -Issues fixed in 2.0.6 : +Issues fixed in 2.0.6.0 : - All: Default RetryPolicy filters updated to not retry 100-407, 409-499, 501, and 505 - All: Support for all flavors of SharedKey and SharedKeyLite message signing through AuthenticationScheme property on client classes. @@ -76,7 +76,7 @@ Issues fixed in 2.0.6 : Issues fixed in 2.0.6.1 : - - Tables: Fix for Table Service layer to drain response stream + - Tables: Fix for Table Service layer to drain response stream Changes in 2.1.0 : @@ -148,4 +148,9 @@ Changes in 2.1.0 : - Tables: Exposed PropertyAsObject Property in EntityProperty as publicly readable. - Tables: Exposed table serialialization logic. Allow users to persist and read back entities that don't derive from TableEntity using static methods(ReadUserObject and WriteUserObject). - Tables: Exposed CreateEntityPropertyFromObject in EntityProperty so users can pass in a value and get the corresponding EntityProperty. - - Tables: Escape single quote in PartitionKey and RowKey correctly while generating URIs. \ No newline at end of file + - Tables: Escape single quote in PartitionKey and RowKey correctly while generating URIs. + +Issues fixed in 2.1.0.2 : + + - Blobs: Streams opened by OpenRead do not throw NotSupportedException when Flush is called. + - Tables: Generic ExecuteQuery methods on CloudTable execute IQueryable queries correctly by generating the filter string.