diff --git a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Microsoft.Practices.TransientFaultHandling.Core.dll b/lib/windowsazure/Microsoft.Practices.TransientFaultHandling.Core.dll
similarity index 100%
rename from src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Microsoft.Practices.TransientFaultHandling.Core.dll
rename to lib/windowsazure/Microsoft.Practices.TransientFaultHandling.Core.dll
diff --git a/lib/windowsazure/Microsoft.Practices.TransientFaultHandling.Core.xml b/lib/windowsazure/Microsoft.Practices.TransientFaultHandling.Core.xml
new file mode 100644
index 000000000..ae7670a98
--- /dev/null
+++ b/lib/windowsazure/Microsoft.Practices.TransientFaultHandling.Core.xml
@@ -0,0 +1,738 @@
+
+
+
+ Microsoft.Practices.TransientFaultHandling.Core
+
+
+
+
+ Handles the execution and retries of the user initiated task.
+
+ The result type of the user initiated task.
+
+
+
+ Provides a wrapper of a non generic and calls in to the pipeline
+ for retrying that supports only the generic verion of .
+
+
+
+
+ Wraps the non generic into a generic .
+
+ The task to wrap.
+ Returns a that wraps the non generic .
+
+
+
+ Implements the common guard methods.
+
+
+
+
+ Checks a string argument to ensure it isn't null or empty.
+
+ The argument value to check.
+ The name of the argument.
+ The return value should be ignored. It is intended to be used only when validating arguments during instance creation (e.g. when calling base constructor).
+
+
+
+ Checks an argument to ensure it isn't null.
+
+ The argument value to check.
+ The name of the argument.
+ /// The return value should be ignored. It is intended to be used only when validating arguments during instance creation (e.g. when calling base constructor).
+
+
+
+ Checks an argument to ensure that its value is not the default value for its type.
+
+ The type of the argument.
+ The value of the argument.
+ The name of the argument for diagnostic purposes.
+
+
+
+ Checks an argument to ensure that its value is not zero or negative.
+
+ The value of the argument.
+ The name of the argument for diagnostic purposes.
+
+
+
+ Checks an argument to ensure that its value is not negative.
+
+ The value of the argument.
+ The name of the argument for diagnostic purposes.
+
+
+
+ Checks an argument to ensure that its value is not negative.
+
+ The value of the argument.
+ The name of the argument for diagnostic purposes.
+
+
+
+ Checks an argument to ensure that its value doesn't exceed the specified ceiling baseline.
+
+ The value of the argument.
+ The ceiling value of the argument.
+ The name of the argument for diagnostic purposes.
+
+
+
+ Checks an Enum argument to ensure that its value is defined by the specified Enum type.
+
+ The Enum type the value should correspond to.
+ The value to check for.
+ The name of the argument holding the value.
+
+
+
+ Verifies that an argument type is assignable from the provided type (meaning
+ interfaces are implemented, or classes exist in the base class hierarchy).
+
+ The argument type.
+ The type it must be assignable from.
+ The argument name.
+
+
+
+ Checks the specified value to ensure that its value is defined, i.e. not null and not default value.
+
+ The type of the value to be checked.
+ The value to be checked.
+ True if the value is defined or false if it's null or represents a default value for its type.
+
+
+
+ Defines an interface which must be implemented by custom components responsible for detecting specific transient conditions.
+
+
+
+
+ Determines whether the specified exception represents a transient failure that can be compensated by a retry.
+
+ The exception object to be verified.
+ True if the specified exception is considered as transient, otherwise false.
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to The specified argument {0} cannot be initialized with its default value..
+
+
+
+
+ Looks up a localized string similar to The specified argument {0} cannot be greater than its ceiling value of {1}..
+
+
+
+
+ Looks up a localized string similar to The specified argument {0} cannot be initialized with a negative value..
+
+
+
+
+ Looks up a localized string similar to The specified argument {0} cannot be initialized with a zero or negative value..
+
+
+
+
+ Looks up a localized string similar to The value of the argument {0} provided for the enumeration {1} is invalid..
+
+
+
+
+ Looks up a localized string similar to The action has exceeded its defined retry limit..
+
+
+
+
+ Looks up a localized string similar to The specified string argument {0} must not be empty..
+
+
+
+
+ Looks up a localized string similar to The specified argument '{0}' cannot return a null task when invoked..
+
+
+
+
+ Looks up a localized string similar to The specified argument '{0}' must return a scheduled task (also known as "hot" task) when invoked..
+
+
+
+
+ Looks up a localized string similar to The specified type {0} is not compatible with {1}..
+
+
+
+
+ Contains information required for the event.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The current retry attempt count.
+ The delay indicating how long the current thread will be suspended for before the next iteration will be invoked.
+ The exception which caused the retry conditions to occur.
+
+
+
+ Gets the current retry count.
+
+
+
+
+ Gets the delay indicating how long the current thread will be suspended for before the next iteration will be invoked.
+
+
+
+
+ Gets the exception which caused the retry conditions to occur.
+
+
+
+
+ The special type of exception that provides managed exit from a retry loop. The user code can use this
+ exception to notify the retry policy that no further retry attempts are required.
+
+
+
+
+ Initializes a new instance of the class with a default error message.
+
+
+
+
+ Initializes a new instance of the class with a specified error message.
+
+ The message that describes the error.
+
+
+
+ Initializes a new instance of the class with a reference to the inner exception
+ that is the cause of this exception.
+
+ The exception that is the cause of the current exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The message that describes the error.
+ The exception that is the cause of the current exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Provides the base implementation of the retry mechanism for unreliable actions and transient conditions.
+
+
+
+
+ Returns a default policy that does no retries, it just invokes action exactly once.
+
+
+
+
+ Returns a default policy that implements a fixed retry interval configured with the default retry strategy.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Returns a default policy that implements a progressive retry interval configured with the default retry strategy.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Returns a default policy that implements a random exponential retry interval configured with the default retry strategy.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and parameters defining the progressive delay between retries.
+
+ The that is responsible for detecting transient conditions.
+ The retry strategy to use for this retry policy.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and default fixed time interval between retries.
+
+ The that is responsible for detecting transient conditions.
+ The number of retry attempts.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and fixed time interval between retries.
+
+ The that is responsible for detecting transient conditions.
+ The number of retry attempts.
+ The interval between retries.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and back-off parameters for calculating the exponential delay between retries.
+
+ The that is responsible for detecting transient conditions.
+ The number of retry attempts.
+ The minimum back-off time.
+ The maximum back-off time.
+ The time value that will be used for calculating a random delta in the exponential delay between retries.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and parameters defining the progressive delay between retries.
+
+ The that is responsible for detecting transient conditions.
+ The number of retry attempts.
+ The initial interval that will apply for the first retry.
+ The incremental time value that will be used for calculating the progressive delay between retries.
+
+
+
+ Repetitively executes the specified action while it satisfies the current retry policy.
+
+ A delegate representing the executable action which doesn't return any results.
+
+
+
+ Repetitively executes the specified action while it satisfies the current retry policy.
+
+ The type of result expected from the executable action.
+ A delegate representing the executable action which returns the result of type R.
+ The result from the action.
+
+
+
+ Repetitively executes the specified asynchronous task while it satisfies the current retry policy.
+
+ A function that returns a started task (also refered as "hot" task).
+
+ Returns a task that will run to completion if the original task completes successfully (either the
+ first time or after retrying transient failures). If the task fails with a non-transient error or
+ the retry limit is reached, the returned task will become faulted and the exception must be observed.
+
+
+
+
+ Repetitively executes the specified asynchronous task while it satisfies the current retry policy.
+
+ A function that returns a started task (also refered as "hot" task).
+ To cancel the retry operation, but not operations that are already in flight or that already completed successfully.
+
+ Returns a task that will run to completion if the original task completes successfully (either the
+ first time or after retrying transient failures). If the task fails with a non-transient error or
+ the retry limit is reached, the returned task will become faulted and the exception must be observed.
+
+
+
+
+ Repeatedly executes the specified asynchronous task while it satisfies the current retry policy.
+
+ A function that returns a started task (also refered as "hot" task).
+
+ Returns a task that will run to completion if the original task completes successfully (either the
+ first time or after retrying transient failures). If the task fails with a non-transient error or
+ the retry limit is reached, the returned task will become faulted and the exception must be observed.
+
+
+
+
+ Repeatedly executes the specified asynchronous task while it satisfies the current retry policy.
+
+ A function that returns a started task (also refered as "hot" task).
+ To cancel the retry operation, but not operations that are already in flight or that already completed successfully.
+
+ Returns a task that will run to completion if the original task completes successfully (either the
+ first time or after retrying transient failures). If the task fails with a non-transient error or
+ the retry limit is reached, the returned task will become faulted and the exception must be observed.
+
+
+
+
+ Repeatedly executes the specified asynchronous action while it satisfies the current retry policy.
+
+ The begin method of the async pattern.
+ The end method of the async pattern.
+ The action to perform when the async operation is done.
+ The fault handler delegate that will be triggered if the operation cannot be successfully invoked despite retry attempts.
+
+
+
+ Repeatedly executes the specified asynchronous action while it satisfies the current retry policy.
+
+ The type of the object returned by the async operation.
+ The begin method of the async pattern.
+ The end method of the async pattern.
+ The action to perform when the async operation is done.
+ The fault handler delegate that will be triggered if the operation cannot be successfully invoked despite retry attempts.
+
+
+
+ Notifies the subscribers whenever a retry condition is encountered.
+
+ The current retry attempt count.
+ The exception which caused the retry conditions to occur.
+ The delay indicating how long the current thread will be suspended for before the next iteration will be invoked.
+
+
+
+ An instance of a callback delegate that will be invoked whenever a retry condition is encountered.
+
+
+
+
+ Gets the retry strategy.
+
+
+
+
+ Gets the instance of the error detection strategy.
+
+
+
+
+ Implements a strategy that ignores any transient errors.
+
+
+
+
+ Always return false.
+
+ The exception.
+ Returns false.
+
+
+
+ Implements a strategy that treats all exceptions as transient errors.
+
+
+
+
+ Always return true.
+
+ The exception.
+ Returns true.
+
+
+
+ Provides a generic version of the class.
+
+ The type implementing the interface that is responsible for detecting transient conditions.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and parameters defining the progressive delay between retries.
+
+ The retry strategy to use for this retry policy.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and default fixed time interval between retries.
+
+ The number of retry attempts.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and fixed time interval between retries.
+
+ The number of retry attempts.
+ The interval between retries.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and back-off parameters for calculating the exponential delay between retries.
+
+ The number of retry attempts.
+ The minimum back-off time.
+ The maximum back-off time.
+ The time value that will be used for calculating a random delta in the exponential delay between retries.
+
+
+
+ Initializes a new instance of the RetryPolicy class with the specified number of retry attempts and parameters defining the progressive delay between retries.
+
+ The number of retry attempts.
+ The initial interval that will apply for the first retry.
+ The incremental time value that will be used for calculating the progressive delay between retries.
+
+
+
+ A retry strategy with back-off parameters for calculating the exponential delay between retries.
+
+
+
+
+ Represents a retry strategy that determines how many times should be retried and the interval between retries.
+
+
+
+
+ The default number of retry attempts.
+
+
+
+
+ The default amount of time used when calculating a random delta in the exponential delay between retries.
+
+
+
+
+ The default maximum amount of time used when calculating the exponential delay between retries.
+
+
+
+
+ The default minimum amount of time used when calculating the exponential delay between retries.
+
+
+
+
+ The default amount of time defining an interval between retries.
+
+
+
+
+ The default amount of time defining a time increment between retry attempts in the progressive delay policy.
+
+
+
+
+ The default flag indicating whether or not the very first retry attempt will be made immediately
+ whereas the subsequent retries will remain subject to retry interval.
+
+
+
+
+ Returns a default policy that does no retries, it just invokes action exactly once.
+
+
+
+
+ Returns a default policy that implements a fixed retry interval configured with and parameters.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Returns a default policy that implements a progressive retry interval configured with , and parameters.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Returns a default policy that implements a random exponential retry interval configured with , , and parameters.
+ The default retry policy treats all caught exceptions as transient errors.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the retry strategy.
+ a value indicating whether or not the very first retry attempt will be made immediately
+ whereas the subsequent retries will remain subject to retry interval.
+
+
+
+ Returns the corresponding ShouldRetry delegate.
+
+ The ShouldRetry delegate.
+
+
+
+ Gets or sets a value indicating whether or not the very first retry attempt will be made immediately
+ whereas the subsequent retries will remain subject to retry interval.
+
+
+
+
+ Gets the name of the retry strategy.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The maximum number of retry attempts.
+ The minimum back-off time
+ The maximum back-off time.
+ The value that will be used for calculating a random delta in the exponential delay between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the retry strategy.
+ The maximum number of retry attempts.
+ The minimum back-off time
+ The maximum back-off time.
+ The value that will be used for calculating a random delta in the exponential delay between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the retry strategy.
+ The maximum number of retry attempts.
+ The minimum back-off time
+ The maximum back-off time.
+ The value that will be used for calculating a random delta in the exponential delay between retries.
+
+ Indicates whether or not the very first retry attempt will be made immediately
+ whereas the subsequent retries will remain subject to retry interval.
+
+
+
+
+ Returns the corresponding ShouldRetry delegate.
+
+ The ShouldRetry delegate.
+
+
+
+ A retry strategy with a specified number of retry attempts and a default fixed time interval between retries.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The number of retry attempts.
+
+
+
+ Initializes a new instance of the class.
+
+ The number of retry attempts.
+ The time interval between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The retry strategy name.
+ The number of retry attempts.
+ The time interval between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The retry strategy name.
+ The number of retry attempts.
+ The time interval between retries.
+ a value indicating whether or not the very first retry attempt will be made immediately whereas the subsequent retries will remain subject to retry interval.
+
+
+
+ Returns the corresponding ShouldRetry delegate.
+
+ The ShouldRetry delegate.
+
+
+
+ A retry strategy with a specified number of retry attempts and an incremental time interval between retries.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The number of retry attempts.
+ The initial interval that will apply for the first retry.
+ The incremental time value that will be used for calculating the progressive delay between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The retry strategy name.
+ The number of retry attempts.
+ The initial interval that will apply for the first retry.
+ The incremental time value that will be used for calculating the progressive delay between retries.
+
+
+
+ Initializes a new instance of the class.
+
+ The retry strategy name.
+ The number of retry attempts.
+ The initial interval that will apply for the first retry.
+ The incremental time value that will be used for calculating the progressive delay between retries.
+ a value indicating whether or not the very first retry attempt will be made immediately whereas the subsequent retries will remain subject to retry interval.
+
+
+
+ Returns the corresponding ShouldRetry delegate.
+
+ The ShouldRetry delegate.
+
+
+
+ Defines a callback delegate that will be invoked whenever a retry condition is encountered.
+
+ The current retry attempt count.
+ The exception which caused the retry conditions to occur.
+ The delay indicating how long the current thread will be suspended for before the next iteration will be invoked.
+ Returns a callback delegate that will be invoked whenever to retry should be attempt.
+
+
+
+ Starts a Task that will complete after the specified due time.
+
+ The delay before the returned task completes.
+
+ The timed Task.
+
+
+
+
diff --git a/lib/windowsazure/Microsoft.ServiceBus.dll b/lib/windowsazure/Microsoft.ServiceBus.dll
index c5cc0c533..d764fca03 100644
Binary files a/lib/windowsazure/Microsoft.ServiceBus.dll and b/lib/windowsazure/Microsoft.ServiceBus.dll differ
diff --git a/lib/windowsazure/Microsoft.WindowsAzure.Configuration.dll b/lib/windowsazure/Microsoft.WindowsAzure.Configuration.dll
index 4d999e26c..aa51c91dd 100644
Binary files a/lib/windowsazure/Microsoft.WindowsAzure.Configuration.dll and b/lib/windowsazure/Microsoft.WindowsAzure.Configuration.dll differ
diff --git a/lib/windowsazure/Microsoft.WindowsAzure.Configuration.xml b/lib/windowsazure/Microsoft.WindowsAzure.Configuration.xml
new file mode 100644
index 000000000..6a2227bf3
--- /dev/null
+++ b/lib/windowsazure/Microsoft.WindowsAzure.Configuration.xml
@@ -0,0 +1,103 @@
+
+
+
+ Microsoft.WindowsAzure.Configuration
+
+
+
+
+ Configuration manager for accessing Windows Azure settings.
+
+
+
+
+ Gets a setting with the given name.
+
+ Setting name.
+ Setting value or null if not found.
+
+
+
+ Gets application settings.
+
+
+
+
+ A strongly-typed resource class, for looking up localized strings, etc.
+
+
+
+
+ Returns the cached ResourceManager instance used by this class.
+
+
+
+
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+
+
+
+
+ Looks up a localized string similar to Argument "{0}" cannot be an empty string..
+
+
+
+
+ Windows Azure settings.
+
+
+
+
+ Initializes the settings.
+
+
+
+
+ Checks whether the given exception represents an exception throws
+ for a missing setting.
+
+ Exception
+ True for the missing setting exception.
+
+
+
+ Gets a setting with the given name.
+
+ Setting name.
+ Setting value or null if such setting does not exist.
+
+
+
+ Gets setting's value from the given provider.
+
+ Provider name.
+ Setting name
+ Method to obtain given setting.
+ Setting value, or null if not found.
+
+
+
+ Gets a configuration setting from the service runtime.
+
+ Setting name.
+ Setting value or null if not found.
+
+
+
+ Loads and returns the latest available version of the service
+ runtime assembly.
+
+ Loaded assembly, if any.
+
+
+
+ Gets an assembly path from the GAC given a partial name.
+
+ An assembly partial name. May not be null.
+
+ The assembly path if found; otherwise null;
+
+
+
+
diff --git a/lib/windowsazure/Microsoft.WindowsAzure.MediaServices.Client.dll b/lib/windowsazure/Microsoft.WindowsAzure.MediaServices.Client.dll
new file mode 100644
index 000000000..540308b76
Binary files /dev/null and b/lib/windowsazure/Microsoft.WindowsAzure.MediaServices.Client.dll differ
diff --git a/lib/windowsazure/Microsoft.WindowsAzure.Storage.dll b/lib/windowsazure/Microsoft.WindowsAzure.Storage.dll
index ddca7b266..540959119 100644
Binary files a/lib/windowsazure/Microsoft.WindowsAzure.Storage.dll and b/lib/windowsazure/Microsoft.WindowsAzure.Storage.dll differ
diff --git a/lib/windowsazure/Microsoft.WindowsAzure.Storage.xml b/lib/windowsazure/Microsoft.WindowsAzure.Storage.xml
index 923caab7e..c77b3a234 100644
--- a/lib/windowsazure/Microsoft.WindowsAzure.Storage.xml
+++ b/lib/windowsazure/Microsoft.WindowsAzure.Storage.xml
@@ -24,7 +24,7 @@
Signs the specified HTTP request so it can be authenticated by the Windows Azure storage services.
The HTTP request to sign.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
@@ -41,7 +41,7 @@
Signs the specified HTTP request with no authentication information.
The HTTP request to sign.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
@@ -61,7 +61,7 @@
Signs the specified HTTP request with a shared key.
The HTTP request to sign.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
@@ -81,16 +81,16 @@
Signs the specified HTTP request with a shared key.
The HTTP request to sign.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
Initializes a new instance of the BlobReadStreamBase class.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -182,9 +182,9 @@
Initializes a new instance of the BlobReadStream class.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -270,7 +270,7 @@
Waits for the pending asynchronous commit to complete.
- The reference to the pending asynchronous request to finish.
+ An object containing a reference to the pending asynchronous request to finish.
@@ -284,25 +284,25 @@
Waits for the pending asynchronous flush to complete.
- The reference to the pending asynchronous request to finish.
+ An object containing a reference to the pending asynchronous request to finish.
Initializes a new instance of the BlobWriteStreamBase class.
The service client.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
Initializes a new instance of the BlobWriteStreamBase class for a block blob.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -311,9 +311,9 @@
Blob reference to write to.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -380,9 +380,9 @@
Initializes a new instance of the BlobWriteStream class for a block blob.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -391,9 +391,9 @@
Blob reference to write to.
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 additional options for the request.
- An object for tracking the current operation.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
@@ -545,12 +545,12 @@
Provides a client-side logical representation of the Windows Azure Blob service. This client is used to configure and execute requests against the Blob service.
- The service client encapsulates the base URI for the Blob service. If the service client will be used for authenticated access,
+ The service client encapsulates the endpoint or endpoints for the Blob service. If the service client will be used for authenticated access,
it also encapsulates the credentials for accessing the storage account.
Provides a client-side logical representation of the Windows Azure Blob service. This client is used to configure and execute requests against the Blob service.
- The service client encapsulates the base URI for the Blob service. If the service client will be used for authenticated access, it also encapsulates
+ The service client encapsulates the endpoint or endpoints for the Blob service. If the service client will be used for authenticated access, it also encapsulates
the credentials for accessing the storage account.
@@ -558,60 +558,60 @@
Returns an enumerable collection of containers whose names
begin with the specified prefix and that are retrieved lazily.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- An enumerable collection of containers that are retrieved lazily.
+ An enumerable collection of objects that are retrieved lazily.
Returns a result segment containing a collection of objects.
- A returned by a previous listing operation.
- A result segment of containers.
+ A object returned by a previous listing operation.
+ A object.
Returns a result segment containing a collection of objects.
- The container name prefix.
- A returned by a previous listing operation.
- A result segment of containers.
+ A string containing the container name prefix.
+ A object returned by a previous listing operation.
+ A object.
Returns a result segment containing a collection of containers whose names begin with the specified prefix.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
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 returned by a previous listing operation.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object returned by a previous listing operation.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- A result segment of containers.
+ A object.
Returns a result segment containing a collection of containers
whose names begin with the specified prefix.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
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 execution options, such as retry policy and timeout settings, for the operation.
+ A object returned by a previous listing operation.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- A result segment of containers.
+ A of type .
Begins an asynchronous request to return a result segment containing a collection of containers.
- A continuation token returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object returned by a previous listing operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -619,9 +619,9 @@
Begins an asynchronous request to return a result segment containing a collection of containers.
- The container name prefix.
- A continuation token returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the container name prefix.
+ A object returned by a previous listing operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -630,14 +630,14 @@
Begins an asynchronous request to return a result segment containing a collection of containers
whose names begin with the specified prefix.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
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 returned by a previous listing operation.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -646,75 +646,75 @@
Ends an asynchronous operation to return a result segment containing a collection of containers.
An that references the pending asynchronous operation.
- A result segment of containers.
+ A object.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- A continuation token returned by a previous listing operation.
- A object that represents the current operation.
+ A object returned by a previous listing operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- A continuation token returned by a previous listing operation.
+ A object returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- The container name prefix.
- A continuation token returned by a previous listing operation.
- A object that represents the current operation.
+ A string containing the container name prefix.
+ A object returned by a previous listing operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- The container name prefix.
- A continuation token returned by a previous listing operation.
+ A string containing the container name prefix.
+ A object returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
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 returned by a previous listing operation.
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.
+ An object that represents the context for the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to return a result segment containing a collection of containers.
+ Initiates an asynchronous operation to return a result segment containing a collection of containers.
- The container name prefix.
- A value that indicates whether to return container metadata with the listing.
+ A string containing the container name prefix.
+ A enumeration value that indicates whether to return container metadata with the listing.
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 returned by a previous listing operation.
A object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns an enumerable collection of the blobs in the container that are retrieved lazily.
+ Returns an enumerable collection of blobs in the container, retrieved lazily.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 additional options for the request.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An enumerable collection of objects that implement and are retrieved lazily.
@@ -723,33 +723,33 @@
Returns a result segment containing a collection of blob items
in the container.
- The blob name prefix, including the container name.
- A returned by a previous listing operation.
- A result segment containing objects that implement .
+ A string containing the blob name prefix, including the container name.
+ A object returned by a previous listing operation.
+ A object.
Returns a result segment containing a collection of blob items
in the container.
- The blob name prefix, including the container name.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix, including the container name.
+ A boolean value that 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 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 returned by a previous listing operation.
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 .
+ A object.
Begins an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix, including the container name.
- A returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the blob name prefix, including the container name.
+ A object returned by a previous listing operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -758,15 +758,15 @@
Begins an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix, including the container name.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix, including the container name.
+ A boolean value that 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 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 returned by a previous listing operation.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -776,174 +776,174 @@
in the container.
An that references the pending asynchronous operation.
- A result segment containing objects that implement .
+ A object.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix, including the container name.
- A returned by a previous listing operation.
- A object that represents the current operation.
+ A string containing the blob name prefix, including the container name.
+ A object returned by a previous listing operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- A returned by a previous listing operation.
+ A string containing the blob name prefix.
+ A object returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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 returned by a previous listing operation.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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 returned by a previous listing operation.
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.
+ A object of type that represents the asynchronous operation.
- Gets a reference to a blob from the service.
+ Gets a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- An object of type containing a reference to the blob.
+ An object.
- Gets a reference to a blob from the service.
+ Gets a reference to a blob.
- 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 containing the URI of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies any additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- An object of type containing a reference to the blob.
+ An object.
- Begins an asynchronous operation to get a reference to a blob from the service.
+ Begins an asynchronous operation to get a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get a reference to a blob from the service.
+ Begins an asynchronous operation to get a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get a reference to a blob from the service.
+ Begins an asynchronous operation to get a reference to a blob.
- The URI of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies any 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get a reference to a blob from the service.
+ Ends an asynchronous operation to get a reference to a blob.
An that references the pending asynchronous operation.
- A reference to the blob.
+ An object.
- Returns a task that gets a reference to a blob from the service.
+ Initiates an asynchronous operation that gets a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- A object that represents the current operation.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ A object of type that represents the asynchronous operation.
- Returns a task that gets a reference to a blob from the service.
+ Initiates an asynchronous operation that gets a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a object that gets a reference to a blob from the service.
+ Returns a object that gets a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that gets a reference to a blob from the service.
+ Initiates an asynchronous operation that gets a reference to a blob.
- The URI of the blob. The service assumes this is the URI for the blob in the primary location.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob. The service assumes this is the URI for the blob at the primary location.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that gets a reference to a blob from the service.
+ Initiates an asynchronous operation that gets a reference to a blob.
- The URI of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
An object that specifies any additional options for the request.
An object that represents the context for the current operation.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that gets a reference to a blob from the service.
+ Initiates an asynchronous operation that gets a reference to a blob.
- The URI of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A containing the URI of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
An object that specifies any 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.
+ A object of type that represents the asynchronous operation.
@@ -961,204 +961,204 @@
Implements the FetchAttributes method. The attributes are updated immediately.
- The URI of the blob.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A containing the URI of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that fetches the attributes.
- Begins an asynchronous operation to get the properties of the blob service.
+ Begins an asynchronous operation to get service properties for the Blob service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get the properties of the blob service.
+ Begins an asynchronous operation to get service properties for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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 to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get the properties of the blob service.
+ Ends an asynchronous operation to get service properties for the Blob service.
An that references the pending asynchronous operation.
- The blob service properties.
+ A object.
- Returns a task that performs an asynchronous operation to get the properties of the blob service.
+ Initiates an asynchronous operation to get service properties for the Blob service.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the blob service.
+ Initiates an asynchronous operation to get service properties for the Blob service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the blob service.
+ Initiates an asynchronous operation to get service properties for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the blob service.
+ Initiates an asynchronous operation to get service properties for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Gets the properties of the blob service.
+ Gets service properties for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- The blob service properties.
+ A object.
- Begins an asynchronous operation to set the properties of the blob service.
+ Begins an asynchronous operation to set service properties for the Blob service.
- The blob service properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to set the properties of the blob service.
+ Begins an asynchronous operation to set service properties for the Blob service.
- The blob service properties.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object.
+ 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 to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to set the properties of the blob service.
+ Ends an asynchronous operation to set service properties for the Blob service.
An that references the pending asynchronous operation.
- Returns a task that gets the properties of the blob service.
+ Initiates an asynchronous operation that sets service properties for the Blob service.
- The blob service properties.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that gets the properties of the blob service.
+ Initiates an asynchronous operation that sets service properties for the Blob service.
- The blob service properties.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that gets the properties of the blob service.
+ Initiates an asynchronous operation that sets service properties for the Blob service.
- The blob service properties.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Returns a task that gets the properties of the blob service.
+ Initiates an asynchronous operation that sets service properties for the Blob service.
- The blob service properties.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object.
+ 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.
+ A object that represents the asynchronous operation.
- Sets the properties of the blob service.
+ Sets service properties for the Blob service.
- The blob service properties.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to get the stats of the blob service.
+ Begins an asynchronous operation to get service stats for the Blob service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get the stats of the blob service.
+ Begins an asynchronous operation to get service stats for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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 to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get the stats of the blob service.
+ Ends an asynchronous operation to get service stats for the Blob service.
An that references the pending asynchronous operation.
- The blob service stats.
+ A object.
- Returns a task that performs an asynchronous operation to get the stats of the blob service.
+ Initiates an asynchronous operation to get service stats for the Blob service.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the blob service.
+ Initiates an asynchronous operation to get service stats for the Blob service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the blob service.
+ Initiates an asynchronous operation to get service stats for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the blob service.
+ Initiates an asynchronous operation to get service stats for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Gets the stats of the blob service.
+ Gets service stats for the Blob service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- The blob service stats.
+ A object.
@@ -1190,36 +1190,36 @@
Initializes a new instance of the class using the specified Blob service endpoint
and anonymous credentials.
- The Blob service endpoint to use to create the client.
+ A object containing the Blob service endpoint to use to create the client.
Initializes a new instance of the class using the specified Blob service endpoint
and account credentials.
- The Blob service endpoint to use to create the client.
- The account credentials.
+ A object containing the Blob service endpoint to use to create the client.
+ A object.
Initializes a new instance of the class using the specified Blob service endpoint
and account credentials.
- The Blob service endpoint to use to create the client.
- The account credentials.
+ A object containing the Blob service endpoint to use to create the client.
+ A object.
- Returns a reference to the root container for this service client.
+ Returns a reference to the root container.
- A reference to the root container.
+ A object.
Returns a reference to a object with the specified name.
- The name of the container, or an absolute URI to the container.
- A reference to a container.
+ A string containing the name of the container, or an absolute URI to the container.
+ A object.
@@ -1233,6 +1233,10 @@
Gets or sets the authentication scheme to use to sign HTTP requests.
+
+ This property is set only when Shared Key or Shared Key Lite credentials are used; it does not apply to authentication via a shared access signature
+ or anonymous access.
+
@@ -1242,63 +1246,64 @@
- Gets or sets a buffer manager that implements the interface,
+ Gets or sets a buffer manager that implements the interface,
specifying a buffer pool for use with operations against the Blob service client.
+ An object of type .
Gets the account credentials used to create the Blob service client.
- The account credentials.
+ A object.
- Gets the base URI for the Blob service client, at the primary location.
+ Gets the base URI for the Blob service client at the primary location.
- The base URI used to construct the Blob service client, at the primary location.
+ A object containing the base URI used to construct the Blob service client at the primary location.
- Gets the Blob service endpoints for all locations.
+ Gets the Blob service endpoints for both the primary and secondary locations.
- An object of type containing Blob service URIs for all locations.
+ An object of type containing Blob service URIs for both the primary and secondary locations.
Gets or sets the default retry policy for requests made via the Blob service client.
- The retry policy.
+ An object of type .
Gets or sets the default location mode for requests made via the Blob service client.
- The location mode.
+ A object.
- Gets or sets the default server and client timeout for requests made via the Blob service client.
+ Gets or sets the default server timeout for requests made via the Blob service client.
- The server and client timeout interval.
+ A containing the server timeout interval.
Gets or sets the maximum execution time across all potential retries.
- The maximum execution time across all potential retries.
+ A containing the maximum execution time across all potential retries.
Gets or sets the default delimiter that may be used to create a virtual directory structure of blobs.
- The default delimiter.
+ A string containing the default delimiter for the Blob service.
Gets or sets the maximum size of a blob in bytes that may be uploaded as a single blob.
- The maximum size of a blob, in bytes, that may be uploaded as a single blob,
+ A long containing the maximum size of a blob, in bytes, that may be uploaded as a single blob,
ranging from between 1 and 64 MB inclusive.
@@ -1306,7 +1311,7 @@
Gets or sets the number of blocks that may be simultaneously uploaded when uploading a blob that is greater than
the value specified by the property in size.
- The number of parallel operations that may proceed.
+ An int indicating the number of parallel operations that may proceed.
@@ -1318,7 +1323,6 @@
Represents a container in the Windows Azure Blob service.
- Containers hold directories, which are encapsulated as objects, and directories hold block blobs and page blobs. Directories can also contain sub-directories.
Represents a container in the Windows Azure Blob service.
@@ -1328,8 +1332,7 @@
Creates the container.
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.
+ An object that represents the context for the current operation.
@@ -1337,14 +1340,13 @@
An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed.
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.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to create a container.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1354,7 +1356,7 @@
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1365,7 +1367,7 @@
An object that specifies whether data in the container may be accessed publicly and what level of access is to be allowed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1377,35 +1379,35 @@
- Returns a task that creates a container.
+ Initiates an asynchronous operation that creates a container.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that creates a container.
+ Initiates an asynchronous operation that creates a container.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that creates a container.
+ Initiates an asynchronous operation 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.
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.
+ A object that represents the asynchronous operation.
- Returns a task that creates a container and specifies the level of access to the container's data.
+ Initiates an asynchronous operation 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.
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.
+ A object that represents the asynchronous operation.
@@ -1428,7 +1430,7 @@
Begins an asynchronous request to create the container if it does not already exist.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1438,7 +1440,7 @@
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1449,7 +1451,7 @@
An object that specifies whether data in the container may be accessed publicly and the level of access.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1462,66 +1464,66 @@
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation that creates the container if it does not already exist.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation that creates the container if it does not already exist.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation that creates the container if it does not already exist.
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.
+ A object that represents the asynchronous operation.
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation that creates the container if it does not already exist.
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.
+ A object that represents the asynchronous operation.
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation 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.
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.
+ A object that represents the asynchronous operation.
- Returns a task that creates the container if it does not already exist.
+ Initiates an asynchronous operation 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.
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.
+ A object that represents the asynchronous operation.
Deletes the container.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to delete a container.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1529,10 +1531,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1544,42 +1546,42 @@
- Returns a task that deletes the container.
+ Initiates an asynchronous operation that deletes the container.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container.
+ Initiates an asynchronous operation that deletes the container.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container.
+ Initiates an asynchronous operation that deletes the container.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container.
+ Initiates an asynchronous operation that deletes the container.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Deletes the container if it already exists.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -1587,7 +1589,7 @@
Begins an asynchronous request to delete the container if it already exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1595,10 +1597,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1611,43 +1613,43 @@
- Returns a task that deletes the container if it already exists.
+ Initiates an asynchronous operation that deletes the container if it already exists.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container if it already exists.
+ Initiates an asynchronous operation that deletes the container if it already exists.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container if it already exists.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that deletes the container if it already exists.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Gets a reference to a blob in this container.
- The name of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ A string containing the name of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
A reference to the blob.
@@ -1655,8 +1657,8 @@
Begins an asynchronous operation to get a reference to a blob in this container.
- The name of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the name of the blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1664,11 +1666,11 @@
Begins an asynchronous operation to get a reference to a blob in this container.
- The name of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A string containing the name of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1681,48 +1683,48 @@
- Returns a task that gets a reference to a blob in this container.
+ Initiates an asynchronous operation that gets a reference to a blob in this container.
- The name of the blob.
- A object that represents the current operation.
+ A string containing the name of the blob.
+ A object that represents the asynchronous operation.
- Returns a task that gets a reference to a blob in this container.
+ Initiates an asynchronous operation that gets a reference to a blob in this container.
- The name of the blob.
+ A string containing the name of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that gets a reference to a blob in this container.
+ Initiates an asynchronous operation that gets a reference to a blob in this container.
- The name of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A string containing the name of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that gets a reference to a blob in this container.
+ Initiates an asynchronous operation that gets a reference to a blob in this container.
- The name of the blob.
- An object that represents the access conditions for the container. If null, no condition is used.
+ A string containing the name of the blob.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Returns an enumerable collection of the blobs in the container that are retrieved lazily.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 additional options for the request.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An enumerable collection of objects that implement and are retrieved lazily.
@@ -1739,7 +1741,7 @@
Returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
+ A string containing the blob name prefix.
A continuation token returned by a previous listing operation.
A result segment containing objects that implement .
@@ -1748,8 +1750,8 @@
Returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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.
@@ -1763,8 +1765,8 @@
Returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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.
@@ -1779,7 +1781,7 @@
in the container.
A continuation token returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1788,9 +1790,9 @@
Begins an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix.
+ A string containing the blob name prefix.
A continuation token returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1799,15 +1801,15 @@
Begins an asynchronous operation to return a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1821,14 +1823,14 @@
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
A continuation token returned by a previous listing operation.
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
A continuation token returned by a previous listing operation.
@@ -1836,43 +1838,43 @@
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
+ A string containing the blob name prefix.
A continuation token returned by a previous listing operation.
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
+ A string containing the blob name prefix.
A continuation token returned by a previous listing operation.
A to observe while waiting for a task to complete.
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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.
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.
+ A object that represents the asynchronous operation.
- Returns a task that returns a result segment containing a collection of blob items
+ Initiates an asynchronous operation that returns a result segment containing a collection of blob items
in the container.
- The blob name prefix.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A string containing the blob name prefix.
+ A boolean value that 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 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.
@@ -1880,15 +1882,15 @@
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.
+ A object that represents the asynchronous operation.
Sets permissions for the container.
The permissions to apply to the container.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -1896,7 +1898,7 @@
Begins an asynchronous request to set permissions for the container.
The permissions to apply to the container.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1905,10 +1907,10 @@
Begins an asynchronous request to set permissions for the container.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1920,46 +1922,46 @@
- Returns a task that sets permissions for the container.
+ Initiates an asynchronous operation that sets permissions for the container.
The permissions to apply to the container.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that sets permissions for the container.
+ Initiates an asynchronous operation that sets permissions for the container.
The permissions to apply to the container.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that sets permissions for the container.
+ Initiates an asynchronous operation that sets permissions for the container.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that sets permissions for the container.
+ Initiates an asynchronous operation that sets permissions for the container.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Gets the permissions settings for the container.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The container's permissions.
@@ -1967,7 +1969,7 @@
Begins an asynchronous request to get the permissions settings for the container.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1975,10 +1977,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -1991,35 +1993,35 @@
- Returns a task that gets the permissions settings for the container.
+ Initiates an asynchronous operation that gets the permissions settings for the container.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that gets the permissions settings for the container.
+ Initiates an asynchronous operation that gets the permissions settings for the container.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that gets the permissions settings for the container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that gets the permissions settings for the container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -2042,7 +2044,7 @@
Begins an asynchronous request to check whether the container exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2052,7 +2054,7 @@
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2063,7 +2065,7 @@
If true, the command will be executed against the primary location.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2076,47 +2078,47 @@
- Returns a task that checks whether the container exists.
+ Initiates an asynchronous operation that checks whether the container exists.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that checks whether the container exists.
+ Initiates an asynchronous operation that checks whether the container exists.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that checks whether the container exists.
+ Initiates an asynchronous operation that checks whether the container exists.
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.
+ A object that represents the asynchronous operation.
- Returns a task that checks whether the container exists.
+ Initiates an asynchronous operation that checks whether the container exists.
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.
+ A object that represents the asynchronous operation.
Retrieves the container's attributes.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to retrieve the container's attributes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2124,10 +2126,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2139,49 +2141,49 @@
- Returns a task that retrieves the container's attributes.
+ Initiates an asynchronous operation that retrieves the container's attributes.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that retrieves the container's attributes.
+ Initiates an asynchronous operation that retrieves the container's attributes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that retrieves the container's attributes.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that retrieves the container's attributes.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Sets the container's user-defined metadata.
- An object that represents the access conditions for the container. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to set user-defined metadata on the container.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2189,10 +2191,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2204,35 +2206,35 @@
- Returns a task that sets container's user-defined metadata.
+ Initiates an asynchronous operation that sets container's user-defined metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that sets container's user-defined metadata.
+ Initiates an asynchronous operation that sets container's user-defined metadata.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that sets container's user-defined metadata.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that sets container's user-defined metadata.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -2241,9 +2243,9 @@
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 container. If null, no condition is used.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The ID of the acquired lease.
@@ -2254,7 +2256,7 @@
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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2266,9 +2268,9 @@
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 container. If null, no condition is used.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -2283,65 +2285,65 @@
- Returns a task that acquires a lease on this container.
+ Initiates an asynchronous operation that acquires a lease on this container.
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.
- A object that represents the current operation.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ A object that represents the asynchronous operation.
- Returns a task that acquires a lease on this container.
+ Initiates an asynchronous operation that acquires a lease on this container.
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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that acquires a lease on this container.
+ Initiates an asynchronous operation that acquires a lease on this container.
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 container. If null, no condition is used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that acquires a lease on this container.
+ Initiates an asynchronous operation that acquires a lease on this container.
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 container. If null, no condition is used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Renews a lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to renew a lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2350,8 +2352,8 @@
Begins an asynchronous operation to renew a lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -2365,45 +2367,45 @@
- Returns a task that renews a lease on this container.
+ Initiates an asynchronous operation that renews a lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that renews a lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that renews a lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that renews a lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
Changes the lease ID on this container.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The new lease ID.
@@ -2412,7 +2414,7 @@
Begins an asynchronous operation to change the lease on this container.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2422,8 +2424,8 @@
Begins an asynchronous operation to change the lease on this container.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -2438,55 +2440,55 @@
- Returns a task that changes the lease ID on this container.
+ Initiates an asynchronous operation that changes the lease ID on this container.
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 represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that changes the lease ID on this container.
+ Initiates an asynchronous operation that changes the lease ID on this container.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that changes the lease ID on this container.
+ Initiates an asynchronous operation that changes the lease ID on this container.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that changes the lease ID on this container.
+ Initiates an asynchronous operation that changes the lease ID on this container.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
Releases the lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to release the lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -2495,8 +2497,8 @@
Begins an asynchronous operation to release the lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -2510,37 +2512,37 @@
- Returns a task that releases the lease on this container.
+ Initiates an asynchronous operation that releases the lease on this container.
- An object that represents the access conditions for the container, including a required lease ID.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that releases the lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that releases the lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that releases the lease on this container.
+ Initiates an asynchronous operation 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
@@ -2549,8 +2551,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -2572,8 +2574,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -2588,47 +2590,47 @@
- Returns a task that breaks the current lease on this container.
+ Initiates an asynchronous operation that breaks the current lease on this container.
A representing the amount of time to allow the lease to remain,
which will be rounded down to seconds. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that breaks the current lease on this container.
+ Initiates an asynchronous operation that breaks the current lease on this container.
A representing the amount of time to allow the lease to remain,
which will be rounded down to seconds. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that breaks the current lease on this container.
+ Initiates an asynchronous operation that breaks the current lease on this container.
A representing the amount of time to allow the lease to remain,
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that breaks the current lease on this container.
+ Initiates an asynchronous operation that breaks the current lease on this container.
A representing the amount of time to allow the lease to remain,
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -2637,16 +2639,16 @@
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 container. If null, no condition is used.
- The options for this operation. This parameter must not be null.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. May not be null.
A RESTCommand implementing the acquire lease operation.
Generates a RESTCommand for renewing a lease.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
The options for this operation, including the current lease ID.
This cannot be null.
A RESTCommand implementing the renew lease operation.
@@ -2656,7 +2658,7 @@
Generates a RESTCommand for changing a lease ID.
The proposed new lease ID.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
The options for this operation, including the current lease ID. This cannot be null.
A RESTCommand implementing the change lease ID operation.
@@ -2664,7 +2666,7 @@
Generates a RESTCommand for releasing a lease.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
The options for this operation, including the current lease ID.
This cannot be null.
A RESTCommand implementing the release lease operation.
@@ -2675,8 +2677,8 @@
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.
- The options for this operation. Cannot be null.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. May not be null.
A RESTCommand implementing the break lease operation.
@@ -2691,7 +2693,7 @@
Implementation for the Delete method.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that deletes the container.
@@ -2699,7 +2701,7 @@
Implementation for the FetchAttributes method.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that fetches the attributes.
@@ -2715,7 +2717,7 @@
Implementation for the SetMetadata method.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that sets the metadata.
@@ -2724,7 +2726,7 @@
Implementation for the SetPermissions method.
The permissions to set.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that sets the permissions.
@@ -2732,7 +2734,7 @@
Implementation for the GetPermissions method.
- An object that represents the access conditions for the container. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that gets the permissions.
@@ -2750,13 +2752,13 @@
The blob 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.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 additional options for the request.
A continuation token returned by a previous listing operation.
A that lists the blobs.
-
+
Retrieve ETag and LastModified date time from response.
@@ -2766,28 +2768,28 @@
Initializes a new instance of the class.
- The absolute URI to the container.
+ A object specifying the absolute URI to the container.
Initializes a new instance of the class.
- The absolute URI to the container.
- The account credentials.
+ A object specifying the absolute URI to the container.
+ A object.
Initializes a new instance of the class.
- The absolute URI to the container.
- The account credentials.
+ A object specifying the absolute URI to the container.
+ A object.
Initializes a new instance of the class.
- The container name.
- A client object that specifies the endpoint for the Blob service.
+ A string specifying the container name.
+ A object.
@@ -2815,7 +2817,7 @@
Returns a shared access signature for the container.
- The access policy for the shared access signature.
+ A object specifying the access policy for the shared access signature.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -2823,83 +2825,93 @@
Returns a shared access signature for the container.
- The access policy for the shared access signature.
+ A object specifying the access policy for the shared access signature.
A container-level access policy.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
+
+
+ Returns a shared access signature for the container.
+
+ A object specifying the access policy for the shared access signature.
+ A container-level access policy.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
+ A shared access signature, as a URI query string.
+ The query string returned includes the leading question mark.
+
Gets a reference to a page blob in this container.
- The name of the blob.
- A reference to a page blob.
+ A string containing the name of the page blob.
+ A object.
Returns a reference to a page blob in this virtual directory.
- The name of the page blob.
- The snapshot timestamp, if the blob is a snapshot.
- A reference to a page blob.
+ A string containing the name of the page blob.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
Gets a reference to a block blob in this container.
- The name of the blob.
- A reference to a block blob.
+ A string containing the name of the block blob.
+ A object.
Gets a reference to a block blob in this container.
- The name of the blob.
- The snapshot timestamp, if the blob is a snapshot.
- A reference to a block blob.
+ A string containing the name of the block blob.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
Gets a reference to a virtual blob directory beneath this container.
- The name of the virtual blob directory.
- A reference to a virtual blob directory.
+ A string containing the name of the virtual blob directory.
+ A object.
- Gets the service client for the container.
+ Gets the Blob service client for the container.
- A client object that specifies the endpoint for the Blob service.
+ A object.
Gets the container's URI for the primary location.
- The absolute URI to the container, at the primary location.
+ A specifying the absolute URI to the container at the primary location.
- Gets the container's URIs for all locations.
+ Gets the container's URIs for both the primary and secondary locations.
- An object of type containing the container's URIs for all locations.
+ An object of type containing the container's URIs for both the primary and secondary locations.
Gets the name of the container.
- The container's name.
+ A string containing the container name.
Gets the container's metadata.
- The container's metadata.
+ An object containing the container's metadata.
Gets the container's system properties.
- The container's properties.
+ A object.
@@ -2909,7 +2921,6 @@
Represents a virtual directory of blobs on the client which emulates a hierarchical data store by using delimiter characters.
- Containers, which are encapsulated as objects, hold directories, and directories hold block blobs and page blobs. Directories can also contain sub-directories.
@@ -2920,33 +2931,33 @@
Gets the URI to the blob item, at the primary location.
- The blob item's URI.
+ The for the blob item.
- Gets the blob item's URIs for all locations.
+ Gets the blob item's URIs for both the primary and secondary locations.
- An object of type containing the blob item's URIs for all locations.
+ An object of type containing the blob item's URIs for both the primary and secondary locations.
Gets the blob item's parent virtual directory.
- The blob item's parent virtual directory.
+ A object.
Gets the blob item's container.
- The blob item's container.
+ A object.
Returns an enumerable collection of the blobs in the virtual directory that are retrieved lazily.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 additional options for the request.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An enumerable collection of objects that implement and are retrieved lazily.
@@ -2955,22 +2966,22 @@
Returns a result segment containing a collection of blob items
in the virtual directory.
- A continuation token returned by a previous listing operation.
- A result segment containing objects that implement .
+ A object returned by a previous listing operation.
+ A object.
Returns a result segment containing a collection of blob items
in the virtual directory.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 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 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 .
+ A object.
@@ -2978,25 +2989,25 @@
in the virtual directory.
A continuation token returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
- An that references the asynchronous operation.
+ An that references the asynchronous operation.
Begins an asynchronous operation to return a result segment containing a collection of blob items
in the virtual directory.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 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 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
- An that references the asynchronous operation.
+ An that references the asynchronous operation.
@@ -3004,45 +3015,45 @@
in the virtual directory.
An that references the pending asynchronous operation.
- A result segment containing objects that implement .
+ A object.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the virtual directory.
A continuation token returned by a previous listing operation.
- A object that represents the current operation.
+ A object of type .
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the virtual directory.
A continuation token returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type .
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the virtual directory.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 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.
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.
+ A object of type .
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of blob items
+ Initiates an asynchronous operation to return a result segment containing a collection of blob items
in the virtual directory.
- Specifies whether to list blobs in a flat listing, or whether to list blobs hierarchically, by virtual directory.
+ A boolean value that 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 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.
@@ -3050,54 +3061,50 @@
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.
+ A object of type .
Stores the parent directory.
-
-
- Stores the prefix this directory represents.
-
-
-
+
Initializes a new instance of the class given an address and a client.
- The blob directory's address.
+ The blob directory's Uri.
+ The blob directory's prefix.
The container for the virtual directory.
Gets a reference to a page blob in this virtual directory.
- The name of the blob.
- A reference to a page blob.
+ A string containing the name of the blob.
+ A object.
Returns a reference to a page blob in this virtual directory.
The name of the page blob.
- The snapshot timestamp, if the blob is a snapshot.
- A reference to a page blob.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
Gets a reference to a block blob in this virtual directory.
- The name of the blob.
- A reference to a block blob.
+ A string containing the name of the blob.
+ A object.
Gets a reference to a block blob in this virtual directory.
- The name of the blob.
- The snapshot timestamp, if the blob is a snapshot.
- A reference to a block blob.
+ A string containing the name of the blob.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
@@ -3106,46 +3113,41 @@
The name of the virtual subdirectory.
A object representing the virtual subdirectory.
-
-
- Initializes the prefix.
-
-
- Gets the service client for the virtual directory.
+ Gets the Blob service client for the virtual directory.
- A client object that specifies the endpoint for the Windows Azure Blob service.
+ A object.
Gets the URI that identifies the virtual directory for the primary location.
- The URI to the virtual directory, at the primary location.
+ A containing the URI to the virtual directory, at the primary location.
- Gets the blob directory's URIs for all locations.
+ Gets the blob directory's URIs for both the primary and secondary locations.
- An object of type containing the blob directory's URIs for all locations.
+ An object of type containing the blob directory's URIs for both the primary and secondary locations.
Gets the container for the virtual directory.
- The container for the virtual directory.
+ A object.
Gets the parent directory for the virtual directory.
- The virtual directory's parent directory.
+ A object.
Gets the prefix.
- The prefix.
+ A string containing the prefix.
@@ -3162,8 +3164,8 @@
The destination stream.
The offset.
The length.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that gets the stream.
@@ -3174,8 +3176,8 @@
The blob.
The attributes.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that fetches the attributes.
@@ -3186,7 +3188,7 @@
The blob.
The attributes.
- An object that specifies additional options for the request.
+ A object that specifies additional options for the request.
If true, the command will be executed against the primary location.
A that checks existence.
@@ -3198,8 +3200,8 @@
The blob.
The attributes.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that sets the metadata.
@@ -3210,8 +3212,8 @@
The blob.
The attributes.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that sets the properties.
@@ -3223,8 +3225,8 @@
The blob.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that deletes the blob.
@@ -3238,9 +3240,9 @@
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 additional options for the request.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A implementing the acquire lease operation.
@@ -3251,8 +3253,8 @@
The blob.
The attributes.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A implementing the renew lease operation.
@@ -3265,8 +3267,8 @@
The blob.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A implementing the change lease ID operation.
@@ -3278,8 +3280,8 @@
The blob.
The attributes.
- An object that represents the access conditions for the blob. If null, no condition is used.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A implementing the release lease operation.
@@ -3293,8 +3295,8 @@
The 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A implementing the break lease operation.
@@ -3306,9 +3308,9 @@
The blob.
The attributes.
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 additional options for the request.
+ 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 additional options for the request.
A that starts to copy the blob.
@@ -3321,8 +3323,8 @@
The blob.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request.
A that aborts the copy.
@@ -3370,30 +3372,50 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Begins an asynchronous operation to open a stream for reading from the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
@@ -3401,55 +3423,92 @@
An that references the pending asynchronous 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 the read process before beginning another read process can cause unexpected behavior.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Uploads a stream to the Windows Azure Blob Service.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Uploads a stream to the Windows Azure Blob Service.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
An object that represents the context for the current operation.
@@ -3457,8 +3516,8 @@
Begins an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object providing the blob content.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3466,11 +3525,11 @@
Begins 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 additional options for the request.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3478,9 +3537,9 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3488,12 +3547,12 @@
Begins an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3505,97 +3564,97 @@
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
- A object that represents the current operation.
+ A object providing the blob content.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
+ A object providing the blob content.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates 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 additional options for the request.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates 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 additional options for the request.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a blob.
+ Initiates an asynchronous operation to upload a stream to a blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Uploads a file to the Windows Azure Blob Service.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3603,12 +3662,12 @@
Begins an asynchronous operation to upload a file to a blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3620,43 +3679,43 @@
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- A object that represents the current operation.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
@@ -3665,8 +3724,8 @@
An array of bytes.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -3676,7 +3735,7 @@
An array of bytes.
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3687,10 +3746,10 @@
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3702,63 +3761,63 @@
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
Downloads 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 additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object representing the target stream.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3766,11 +3825,11 @@
Begins 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 additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3782,57 +3841,57 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
- A object that represents the current operation.
+ A object representing the target stream.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
+ A object representing the target stream.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates 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 additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates 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 additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Downloads 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3840,12 +3899,12 @@
Begins 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3857,43 +3916,43 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
- A object that represents the current operation.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
@@ -3901,8 +3960,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
@@ -3912,7 +3971,7 @@
The target byte array.
The starting offset in the byte array.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3922,10 +3981,10 @@
The target byte array.
The starting offset in the byte array.
- An object that represents the access conditions for the blob.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -3938,63 +3997,63 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
Downloads a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing the target stream.
The starting offset of the data range, in bytes.
The length of the data range, in bytes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4002,13 +4061,13 @@
Begins an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4020,47 +4079,47 @@
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing the target stream.
The starting offset of the data range, in bytes.
The length of the data range, in bytes.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing the target stream.
The starting offset of the data range, in bytes.
The length of the data range, in bytes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
@@ -4070,8 +4129,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
@@ -4083,7 +4142,7 @@
The starting offset in the byte array.
The starting offset of the data range, in bytes.
The length of the data range, in bytes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4095,10 +4154,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4111,65 +4170,65 @@
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
Checks existence of the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
true if the blob exists.
Begins an asynchronous request to check existence of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4177,9 +4236,9 @@
Begins an asynchronous request to check existence of the blob.
- 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 object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4192,47 +4251,47 @@
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
- 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.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
Populates a blob's properties and metadata.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to populate the blob's properties and metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4240,10 +4299,10 @@
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 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4255,49 +4314,49 @@
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates an asynchronous operation to populate the blob's properties and metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 additional options for the request.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Updates the blob's metadata.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4305,10 +4364,10 @@
Begins an asynchronous operation to update the blob's metadata.
- An object that represents the access conditions for the blob.
- 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4320,49 +4379,49 @@
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates an asynchronous operation to update the blob's metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates an asynchronous operation to update the blob's metadata.
- An object that represents the access conditions for the blob.
- 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates an asynchronous operation to update the blob's metadata.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Updates the blob's properties.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4370,10 +4429,10 @@
Begins an asynchronous operation to update the blob's properties.
- An object that represents the access conditions for the blob.
- 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4385,50 +4444,50 @@
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates an asynchronous operation to update the blob's properties.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates an asynchronous operation to update the blob's properties.
- An object that represents the access conditions for the blob.
- 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates an asynchronous operation to update the blob's properties.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Deletes 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 additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to delete the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4437,10 +4496,10 @@
Begins 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 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.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4452,45 +4511,45 @@
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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 additional options for the request.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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 additional options for the request.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Deletes 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -4498,7 +4557,7 @@
Begins an asynchronous request to delete the blob if it already exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4507,10 +4566,10 @@
Begins 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4523,37 +4582,37 @@
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation to delete the blob if it already exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object of type bool that represents the asynchronous operation.
@@ -4562,9 +4621,9 @@
A representing the span of time for which to acquire the lease,
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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
The ID of the acquired lease.
@@ -4585,9 +4644,9 @@
A representing the span of time for which to acquire the lease,
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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4601,61 +4660,61 @@
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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.
A string representing the proposed lease ID for the new lease.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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.
A string representing the proposed lease ID for the new lease.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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.
A string representing the proposed lease ID for the new lease.
- An object that represents the access conditions for the blob.
- The options for this operation.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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.
A string representing the proposed lease ID for the new lease.
- An object that represents the access conditions for the blob.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object of type string that represents the asynchronous operation.
Renews 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4664,9 +4723,9 @@
Begins 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4679,46 +4738,46 @@
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ 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.
+ A object that represents the asynchronous operation.
Changes the lease ID 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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
The new lease ID.
@@ -4726,7 +4785,7 @@
Begins 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4736,9 +4795,9 @@
Begins 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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4752,55 +4811,55 @@
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates 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.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates 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.
- The options for this operation.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates 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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ 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.
+ A object of type string that represents the asynchronous operation.
Releases 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4809,9 +4868,9 @@
Begins 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4824,37 +4883,37 @@
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ 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.
+ A object that represents the asynchronous operation.
@@ -4862,9 +4921,9 @@
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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -4883,9 +4942,9 @@
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.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -4899,134 +4958,133 @@
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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.
- An object that represents the access conditions for the blob.
- The options for this operation.
- An object that represents the context for the current operation.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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.
- An object that represents the access conditions for the blob.
- The options for this operation.
- An object that represents the context for the current operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object of type that represents the asynchronous operation.
- Requests that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Starts an operation to start copying another blob's contents, properties, and metadata to this blob.
- 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 additional options for the request.
+ The of the source blob.
+ An object that represents the access conditions for the source blob.
+ An object that represents the access conditions for the destination blob.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The copy ID associated with the copy operation.
- Begins an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Begins an asynchronous operation to start copying a blob's contents, properties, and metadata to this blob.
- The URI of a source blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ The of the source blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins 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.
+ Begins an asynchronous operation to start copying a blob's contents, properties, and metadata to this blob.
- 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 additional options for the request.
+ The of the source blob.
+ An object that represents the access conditions for the source blob.
+ An object that represents the access conditions for the destination blob.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Ends an asynchronous operation to start copying a blob's contents, properties, and metadata to this blob.
An that references the pending asynchronous operation.
The copy ID associated with the copy operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this blob.
- The URI of a source blob.
- A object that represents the current operation.
+ The of the source blob.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this blob.
- The URI of a source blob.
+ The of the source blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this blob.
- 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 additional options for the request.
+ The of the source blob.
+ An object that represents the access conditions for the source blob.
+ An object that represents the access conditions for the destination blob.
+ 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.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this blob.
- 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 additional options for the request.
+ The of the source blob.
+ An object that represents the access conditions for the source blob.
+ An object that represents the access conditions for the destination blob.
+ 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.
+ A object of type string that represents the asynchronous operation.
Aborts 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -5034,7 +5092,7 @@
Begins an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5043,10 +5101,10 @@
Begins 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5058,45 +5116,45 @@
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ A object that represents the asynchronous operation.
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
+ A object specifying the access policy for the shared access signature.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -5104,8 +5162,8 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- A container-level access policy.
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -5113,30 +5171,40 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob accessed with this SAS.
- A shared access signature.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A shared access signature, as a URI query string.
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob returned with this SAS.
- A stored access policy.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A shared access signature, as a URI query string.
+
+
+
+ Returns a shared access signature for the blob.
+
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
A shared access signature.
- Gets the blob item's name.
+ Gets the blob's name.
- The blob item's name.
+ A string containing the name of the blob.
Gets the object that represents the Blob service.
- A client object that specifies the Blob service endpoint.
+ A object.
@@ -5155,19 +5223,19 @@
Gets the blob's system properties.
- The blob's properties.
+ A object.
Gets the user-defined metadata for the blob.
- The blob's metadata, as a collection of name-value pairs.
+ An object containing the blob's metadata as a collection of name-value pairs.
Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.
- The blob's snapshot time if the blob is a snapshot; otherwise, null.
+ A containing the blob's snapshot time if the blob is a snapshot; otherwise, null.
If the blob is not a snapshot, the value of this property is null.
@@ -5180,190 +5248,282 @@
- Gets the absolute URI to the blob, including query string information if the blob is a snapshot, at the primary location.
+ Gets the absolute URI to the blob, including query string information if the blob is a snapshot.
- The absolute URI to the blob, including snapshot query information if the blob is a snapshot, at the primary location.
+ A specifying the absolute URI to the blob, including snapshot query information if the blob is a snapshot.
- Gets the blob's URI for all locations, including query string information if the blob is a snapshot.
+ Gets the blob's URI for both the primary and secondary locations, including query string information if the blob is a snapshot.
- An object of type containing the blob's URIs for all locations,
+ An object of type containing the blob's URIs for both the primary and secondary locations,
including snapshot query information if the blob is a snapshot.
Gets the state of the most recent or pending copy operation.
- A object containing the copy state, or null if no copy blob state exists for this blob.
+ A object containing the copy state, or null if there is no copy state for the blob.
Gets the type of the blob.
- The type of the blob.
+ A enumeration value.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
+ A object to be used for reading from the blob.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Begins an asynchronous operation to open a stream for reading from the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Ends an asynchronous operation to open a stream for reading from the blob.
An that references the pending asynchronous operation.
- A stream to be used for reading from the blob.
+ A object 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 the read process before beginning another read process can cause unexpected behavior.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- A stream to be used for writing to the blob.
+ A to be used for writing to the blob.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Begins an asynchronous operation to open a stream for writing to the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Ends an asynchronous operation to open a stream for writing to the blob.
An that references the pending asynchronous operation.
- A stream to be used for writing to the blob.
+ A to be used for writing to the blob.
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Uploads a stream to a block blob.
- 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 additional options for the request.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Uploads a stream to a block blob.
- The stream providing the blob content.
+ A object 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Uploads a stream to a block blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
An object that represents the context for the current operation.
@@ -5371,8 +5531,8 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object providing the blob content.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5380,11 +5540,11 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5392,9 +5552,9 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5402,12 +5562,12 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5415,12 +5575,12 @@
Begins an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5432,97 +5592,97 @@
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
- A object that represents the current operation.
+ A object providing the blob content.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a block blob.
+ Initiates an asynchronous operation to upload a stream to a block blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Uploads a file to the Blob service.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5530,12 +5690,12 @@
Begins an asynchronous operation to upload a file to a blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5553,43 +5713,43 @@
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- A object that represents the current operation.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- The file providing the blob content.
- A constant that determines how to open the file.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- 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.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a blob.
- 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.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
@@ -5598,8 +5758,8 @@
An array of bytes.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -5609,7 +5769,7 @@
An array of bytes.
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5620,10 +5780,10 @@
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5635,64 +5795,64 @@
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
Uploads a string of text to a blob.
- 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 additional options for the request.
+ A string containing the text to upload.
+ A object that indicates the text encoding to use. If null, UTF-8 will be used.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to upload a string of text to a blob.
- The text to upload.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the text to upload.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5700,12 +5860,12 @@
Begins an asynchronous operation to upload a string of text to a blob.
- 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 additional options for the request.
+ A string containing the text to upload.
+ A object that indicates the text encoding to use. If null, UTF-8 will be used.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5717,57 +5877,57 @@
- Returns a task that performs an asynchronous operation to upload a string of text to a blob.
+ Initiates an asynchronous operation to upload a string of text to a blob.
- The text to upload.
- A object that represents the current operation.
+ A string containing the text to upload.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a string of text to a blob.
+ Initiates an asynchronous operation to upload a string of text to a blob.
- The text to upload.
+ A string containing the text to upload.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a string of text to a blob.
+ Initiates an asynchronous operation to upload a string of text to a blob.
- 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.
+ A string containing the text to upload.
+ A object that indicates the text encoding to use. If null, UTF-8 will be used.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a string of text to a blob.
+ Initiates an asynchronous operation to upload a string of text to a blob.
- 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.
+ A string containing the text to upload.
+ A object that indicates the text encoding to use. If null, UTF-8 will be used.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
Downloads the contents of a blob to a stream.
- The target stream.
- An object that represents the access conditions for the blob. If null, no condition is used.
- A object that specifies additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object representing the target stream.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5775,11 +5935,11 @@
Begins 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. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5791,57 +5951,57 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
- A object that represents the current operation.
+ A object representing the target stream.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a blob to a stream.
- The target stream.
+ A object representing the target stream.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates 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. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates 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. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Downloads 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5849,12 +6009,12 @@
Begins 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5872,43 +6032,43 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
- A object that represents the current operation.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
@@ -5916,8 +6076,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
@@ -5927,7 +6087,7 @@
The target byte array.
The starting offset in the byte array.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5937,10 +6097,10 @@
The target byte array.
The starting offset in the byte array.
- An object that represents the access conditions for the blob.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -5953,51 +6113,51 @@
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
Downloads the blob's contents as a string.
An object that indicates the text encoding to use.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The contents of the blob, as a string.
@@ -6005,7 +6165,7 @@
Begins an asynchronous operation to download the blob's contents as a string.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6014,10 +6174,10 @@
Begins an asynchronous operation to download the blob's contents as a string.
An object that indicates the text encoding to use.
- An object that represents the access conditions for the blob.
- An object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6036,57 +6196,57 @@
- Returns a task that performs an asynchronous operation to download the blob's contents as a string.
+ Initiates an asynchronous operation to download the blob's contents as a string.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the blob's contents as a string.
+ Initiates an asynchronous operation to download the blob's contents as a string.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the blob's contents as a string.
+ Initiates an asynchronous operation to download the blob's contents as a string.
An object that indicates the text encoding to use.
- An object that represents the access conditions for the blob.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the blob's contents as a string.
+ Initiates an asynchronous operation to download the blob's contents as a string.
An object that indicates the text encoding to use.
- An object that represents the access conditions for the blob.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type string that represents the asynchronous operation.
Downloads a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6094,13 +6254,13 @@
Begins an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6112,47 +6272,47 @@
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -6162,8 +6322,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
@@ -6175,7 +6335,7 @@
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6187,10 +6347,10 @@
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 represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6209,57 +6369,57 @@
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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 represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates 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 represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
Checks existence of the blob.
- A object that specifies additional options for the request.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
true if the blob exists.
@@ -6276,7 +6436,7 @@
Begins an asynchronous request to check existence of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6286,7 +6446,7 @@
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6297,7 +6457,7 @@
If true, the command will be executed against the primary location.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6310,47 +6470,47 @@
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
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.
+ A object of type bool that represents the asynchronous operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to populate the blob's properties and metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6358,10 +6518,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6373,49 +6533,49 @@
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates an asynchronous operation to populate the blob's properties and metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6423,10 +6583,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6438,49 +6598,49 @@
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates an asynchronous operation to update the blob's metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6488,10 +6648,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6503,50 +6663,50 @@
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates an asynchronous operation to update the blob's properties.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Deletes 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. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to delete the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6555,10 +6715,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6570,45 +6730,45 @@
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Deletes 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. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
true if the blob did already exist and was deleted; otherwise false.
@@ -6616,7 +6776,7 @@
Begins an asynchronous request to delete the blob if it already exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6625,10 +6785,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6641,53 +6801,53 @@
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation to delete the blob if it already exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type bool that represents the asynchronous operation.
Creates a snapshot of the blob.
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 additional options for the request, or null.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request, or null. If null, default options are applied to the request.
An object that represents the context for the current operation.
- A blob snapshot.
+ A object that is a blob snapshot.
Begins an asynchronous operation to create a snapshot of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6696,10 +6856,10 @@
Begins an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6708,41 +6868,41 @@
Ends an asynchronous operation to create a snapshot of the blob.
An that references the pending asynchronous operation.
- A blob snapshot.
+ A object that is a blob snapshot.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
@@ -6751,11 +6911,11 @@
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.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- The ID of the acquired lease.
+ A string containing the ID of the acquired lease.
@@ -6764,7 +6924,7 @@
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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6776,9 +6936,9 @@
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.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -6789,69 +6949,69 @@
Ends an asynchronous operation to acquire a lease on this blob.
An IAsyncResult that references the pending asynchronous operation.
- The ID of the acquired lease.
+ A string containing the ID of the acquired lease.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
- A object that represents the current operation.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type string that represents the asynchronous operation.
Renews 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6860,8 +7020,8 @@
Begins 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -6875,45 +7035,45 @@
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
Changes the lease ID on this blob.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The new lease ID.
@@ -6922,7 +7082,7 @@
Begins an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -6932,8 +7092,8 @@
Begins an asynchronous operation to change the lease on this blob.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -6943,60 +7103,60 @@
Ends an asynchronous operation to change the lease on this blob.
- An IAsyncResult that references the pending asynchronous operation.
- The new lease ID.
+ An that references the pending asynchronous operation.
+ A string containing the new lease ID.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object of type string that represents the asynchronous operation.
Releases 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7005,8 +7165,8 @@
Begins 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -7020,37 +7180,37 @@
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
@@ -7059,8 +7219,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -7082,8 +7242,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -7098,86 +7258,101 @@
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
Uploads a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- 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 additional options for the request.
+ A Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
Begins an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
Begins an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- 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 Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
@@ -7187,67 +7362,87 @@
- Returns a task that performs an asynchronous operation to upload a single block.
+ Initiates an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
- A object that represents the current operation.
+ A Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to upload a single block.
+ Initiates an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
+ A Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to upload a single block.
+ Initiates an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- 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 Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to upload a single block.
+ Initiates an asynchronous operation to upload a single block.
- A base64-encoded block ID that identifies the block.
- A stream that provides the data for the block.
- 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 Base64-encoded string that identifies the block.
+ A object that provides the data for the block.
+ An optional hash value used to ensure transactional integrity for the block. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Put Block operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
Uploads a list of blocks to a new or existing blob.
- 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 additional options for the request.
+ An enumerable collection of block IDs, as Base64-encoded strings.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to upload a list of blocks to a new or existing blob.
- An enumerable collection of block IDs, as base64-encoded strings.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An enumerable collection of block IDs, as Base64-encoded strings.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7255,11 +7450,11 @@
Begins an asynchronous operation to upload a list of blocks to a new or existing blob.
- 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 enumerable collection of block IDs, as Base64-encoded strings.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7271,48 +7466,48 @@
- Returns a task that performs an asynchronous operation to upload a list of blocks to a new or existing blob.
+ Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.
- An enumerable collection of block IDs, as base64-encoded strings.
- A object that represents the current operation.
+ An enumerable collection of block IDs, as Base64-encoded strings.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a list of blocks to a new or existing blob.
+ Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.
- An enumerable collection of block IDs, as base64-encoded strings.
+ An enumerable collection of block IDs, as Base64-encoded strings.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a list of blocks to a new or existing blob.
+ Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.
- 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 enumerable collection of block IDs, as Base64-encoded strings.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a list of blocks to a new or existing blob.
+ Initiates an asynchronous operation to upload a list of blocks to a new or existing blob.
- 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 enumerable collection of block IDs, as Base64-encoded strings.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Returns an enumerable collection of the blob's blocks, using the specified block list filter.
- One of the enumeration values that indicates whether to return
+ A enumeration value 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An enumerable collection of objects implementing .
@@ -7321,7 +7516,7 @@
Begins an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7330,12 +7525,12 @@
Begins an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
- One of the enumeration values that indicates whether to return
+ A enumeration value 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7349,222 +7544,212 @@
- Returns a task that performs an asynchronous operation to return an enumerable collection of the blob's blocks,
+ Initiates an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return an enumerable collection of the blob's blocks,
+ Initiates an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return an enumerable collection of the blob's blocks,
+ Initiates an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
- One of the enumeration values that indicates whether to return
+ A enumeration value 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return an enumerable collection of the blob's blocks,
+ Initiates an asynchronous operation to return an enumerable collection of the blob's blocks,
using the specified block list filter.
- One of the enumeration values that indicates whether to return
+ A enumeration value 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Requests that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Starts an operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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 additional options for the request.
+ The 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- Requests that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Starts an operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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 additional options for the request.
+ The 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- Begins an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Begins an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The URI of a source blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ The of the source blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Begins an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The source blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ The that is the source blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins 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.
+ Begins an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The 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.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins 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.
+ Begins an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The that is 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 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Ends an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
An that references the pending asynchronous operation.
The copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The URI of a source blob.
- A object that represents the current operation.
+ The of the source blob.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The URI of a source blob.
+ The of the source blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The source blob.
- A object that represents the current operation.
+ The that is the source blob.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- The source blob.
+ The that is the source blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The 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.
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.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The 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.
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.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The that is 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 additional options for the request.
An object that represents the context for the current operation.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another block blob's contents, properties, and metadata to this block blob.
- 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.
+ The that is 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 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.
+ A object of type string that represents the asynchronous operation.
Aborts an ongoing blob copy operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -7572,7 +7757,7 @@
Begins an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7581,10 +7766,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -7596,46 +7781,46 @@
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Implementation for the CreateSnapshot method.
- 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 collection of name-value pairs defining the metadata of the snapshot, or null.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
@@ -7647,7 +7832,7 @@
The content stream. Must be seekable.
Number 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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that gets the stream.
@@ -7658,7 +7843,7 @@
The source stream.
The block ID.
The content MD5.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that uploads the block.
@@ -7667,7 +7852,7 @@
Uploads the block list.
The blocks to upload.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that uploads the block list.
@@ -7676,7 +7861,7 @@
Gets the download block list.
The types of blocks.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that gets the download block list.
@@ -7694,30 +7879,30 @@
Initializes a new instance of the class using an absolute URI to the blob.
- The absolute URI to the blob.
+ A specifying the absolute URI to the blob.
Initializes a new instance of the class using an absolute URI to the blob.
- The absolute URI to the blob.
- The account credentials.
+ A specifying the absolute URI to the blob.
+ A object.
Initializes a new instance of the class using an absolute URI to the blob.
- The absolute URI to the blob.
- The snapshot timestamp, if the blob is a snapshot.
- The account credentials.
+ A specifying the absolute URI to the blob.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
Initializes a new instance of the class using an absolute URI to the blob.
- The absolute URI to the blob.
- The snapshot timestamp, if the blob is a snapshot.
- The account credentials.
+ A containing the absolute URI to the blob at both the primary and secondary locations.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
@@ -7755,7 +7940,7 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
+ A object specifying the access policy for the shared access signature.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -7763,8 +7948,8 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- A stored access policy.
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -7772,18 +7957,28 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob accessed with this SAS.
- A shared access signature.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A shared access signature, as a URI query string.
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob returned with this SAS.
- A stored access policy.
- A shared access signature.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A shared access signature, as a URI query string.
+
+
+
+ Returns a shared access signature for the blob.
+
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
+ A shared access signature, as a URI query string.
@@ -7806,7 +8001,7 @@
Gets the object that represents the Blob service.
- A client object that specifies the Blob service endpoint.
+ A object.
@@ -7818,37 +8013,40 @@
Gets or sets the minimum number of bytes to buffer when reading from a blob stream.
- The minimum number of bytes to buffer, being at least 16KB.
+ The minimum number of bytes to buffer, being at least 16 KB.
Gets the blob's system properties.
- The blob's properties.
+ A object.
Gets the user-defined metadata for the blob.
- The blob's metadata, as a collection of name-value pairs.
+ An object containing the blob's metadata as a collection of name-value pairs.
Gets the blob's URI for the primary location.
- The absolute URI to the blob, at the primary location.
+ A specifying the absolute URI to the blob at the primary location.
- Gets the block blob's URIs for all locations.
+ Gets the block blob's URIs for both the primary and secondary locations.
- An object of type containing the block blob's URIs for all locations.
+ An object of type containing the block blob's URIs for both the primary and secondary locations.
Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.
- The blob's snapshot time, if the blob is a snapshot. If the blob is not a snapshot, the value of this property is null.
+ A containing the blob's snapshot time if the blob is a snapshot; otherwise, null.
+
+ If the blob is not a snapshot, the value of this property is null.
+
@@ -7860,45 +8058,44 @@
Gets the absolute URI to the blob, including query string information if the blob is a snapshot.
- The absolute URI to the blob, including snapshot query information if the blob is a snapshot.
+ A specifying the absolute URI to the blob, including snapshot query information if the blob is a snapshot.
- Gets the block blob's URI for all locations, including query string information if the blob is a snapshot.
+ Gets the block blob's URI for both the primary and secondary locations, including query string information if the blob is a snapshot.
- An object of type containing the block blob's URIs for all locations,
+ An object of type containing the block blob's URIs for both the primary and secondary locations,
including snapshot query information if the blob is a snapshot.
Gets the state of the most recent or pending copy operation.
- A object containing the copy state, or null if no copy blob state exists for this blob.
+ A object containing the copy state, or null if there is no copy state for the blob.
Gets the type of the blob.
- The type of the blob.
+ A enumeration value.
- Gets the blob's name.
+ Gets the name of the blob.
- The blob's name.
+ A string containing the name of the blob.
Gets a object representing the blob's container.
- The blob's container.
+ A object.
- Gets the object representing the
- virtual parent directory for the blob.
+ Gets the object representing the virtual parent directory for the blob.
- The blob's virtual parent directory.
+ A object.
@@ -7912,30 +8109,50 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Begins an asynchronous operation to open a stream for reading from the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ On the object returned by the method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
@@ -7943,215 +8160,287 @@
An that references the pending asynchronous 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 the read process before beginning another read process can cause unexpected behavior.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates an asynchronous operation to open a stream for reading from the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
- Returns a task that performs an asynchronous operation to open a stream for reading from the blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ On the object returned by this method, the
+ method must be called exactly once for every call.
+ Failing to end the read process before beginning another read process can cause unexpected behavior.
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the minimum
+ number of bytes to buffer when reading from the stream. The value must be at least 16 KB.
+
Opens a stream for writing to the blob.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- A stream to be used for writing to the blob.
+ A object.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Begins an asynchronous operation to open a stream for writing to the blob.
The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Begins an asynchronous operation to open a stream for writing to the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
Ends an asynchronous operation to open a stream for writing to the blob.
An that references the pending asynchronous operation.
- A stream to be used for writing to the blob.
+ A object.
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
The size of the page blob, in bytes. The size must be a multiple of 512. If null, the page blob must already exist.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Returns a task that performs an asynchronous operation to open a stream for writing to the blob.
+ Initiates an asynchronous operation to open a stream for writing to the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
+
+ Note that this method always makes a call to the method under the covers.
+ Set the property before calling this method to specify the block size to write, in bytes,
+ ranging from between 16 KB and 4 MB inclusive.
+
- Downloads the contents of a blob to a stream.
+ Downloads the contents of a page blob to a stream.
- The target stream.
- An object that represents the access conditions for the blob. If null, no condition is used.
- A object that specifies additional options for the request.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to download the contents of a blob to a stream.
+ Begins an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object representing the target stream.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to download the contents of a blob to a stream.
+ Begins an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to download the contents of a blob to a stream.
+ Ends an asynchronous operation to download the contents of a page blob to a stream.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
- A object that represents the current operation.
+ A object representing the target stream.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
+ A object representing the target stream.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a stream.
+ Initiates an asynchronous operation to download the contents of a page blob to a stream.
- The target stream.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object representing the target stream.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Downloads the contents of a blob to a file.
+ Downloads the contents of a page 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to download the contents of a blob to a file.
+ Begins an asynchronous operation to download the contents of a page blob to a file.
- The target file.
- A constant that determines how to open or create the file.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to download the contents of a blob to a file.
+ Begins an asynchronous operation to download the contents of a page 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 additional options for the request.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8163,254 +8452,254 @@
- Ends an asynchronous operation to download the contents of a blob to a file.
+ Ends an asynchronous operation to download the contents of a page blob to a file.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates an asynchronous operation to download the contents of a page blob to a file.
- The target file.
- A constant that determines how to open or create the file.
- A object that represents the current operation.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates an asynchronous operation to download the contents of a page blob to a file.
- The target file.
- A constant that determines how to open or create the file.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates an asynchronous operation to download the contents of a page 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a file.
+ Initiates an asynchronous operation to download the contents of a page 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.
+ A string containing the path to the target file.
+ A enumeration value that determines how to open or create the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Downloads the contents of a blob to a byte array.
+ Downloads the contents of a page 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
- Begins an asynchronous operation to download the contents of a blob to a byte array.
+ Begins an asynchronous operation to download the contents of a page blob to a byte array.
The target byte array.
The starting offset in the byte array.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to download the contents of a blob to a byte array.
+ Begins an asynchronous operation to download the contents of a page 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to download the contents of a blob to a byte array.
+ Ends an asynchronous operation to download the contents of a page blob to a byte array.
An that references the pending asynchronous operation.
The total number of bytes read into the buffer.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates an asynchronous operation to download the contents of a page blob to a byte array.
The target byte array.
The starting offset in the byte array.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates an asynchronous operation to download the contents of a page blob to a byte array.
The target byte array.
The starting offset in the byte array.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates an asynchronous operation to download the contents of a page 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download the contents of a blob to a byte array.
+ Initiates an asynchronous operation to download the contents of a page 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.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Downloads a range of bytes from a blob to a stream.
+ Downloads a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to download a range of bytes from a blob to a stream.
+ Begins an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to download a range of bytes from a blob to a stream.
+ Begins an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to download a range of bytes from a blob to a stream.
+ Ends an asynchronous operation to download a range of bytes from a page blob to a stream.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a stream.
+ Initiates an asynchronous operation to download a range of bytes from a page blob to a stream.
- The target stream.
+ A object representing 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Downloads a range of bytes from a blob to a byte array.
+ Downloads a range of bytes from a page 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The total number of bytes read into the buffer.
- Begins an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Begins an asynchronous operation to download a range of bytes from a page 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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Begins an asynchronous operation to download a range of bytes from a page 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 represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8422,85 +8711,85 @@
- Ends an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Ends an asynchronous operation to download a range of bytes from a page blob to a byte array.
An that references the pending asynchronous operation.
The total number of bytes read into the buffer.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates an asynchronous operation to download a range of bytes from a page 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.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates an asynchronous operation to download a range of bytes from a page 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates an asynchronous operation to download a range of bytes from a page 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 represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to download a range of bytes from a blob to a byte array.
+ Initiates an asynchronous operation to download a range of bytes from a page 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 represents the condition that must be met in order for the request to proceed.
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.
+ A object of type int that represents the asynchronous operation.
Uploads a stream to a page blob.
- 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 additional options for the request.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Uploads a stream to a page blob.
- The stream providing the blob content.
+ A object 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Uploads a stream to a page blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
An object that represents the context for the current operation.
@@ -8508,8 +8797,8 @@
Begins an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object providing the blob content.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8517,11 +8806,11 @@
Begins an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8529,9 +8818,9 @@
Begins an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object providing the blob content.
Specifies the number of bytes from the Stream source to upload from the start position.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8539,12 +8828,12 @@
Begins an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object 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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8552,12 +8841,12 @@
Begins an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object 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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8569,110 +8858,110 @@
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
- A object that represents the current operation.
+ A object providing the blob content.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object providing the blob content.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ A object providing the blob content.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object providing the blob content.
The number of bytes to write from the source stream at its current position.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a stream to a page blob.
+ Initiates an asynchronous operation to upload a stream to a page blob.
- The stream providing the blob content.
+ A object 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Uploads a file to the Windows Azure Blob Service.
+ Uploads a file to a page blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to upload a file to a blob.
+ Begins an asynchronous operation to upload a file to a page blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to upload a file to a blob.
+ Begins an asynchronous operation to upload a file to a page blob.
- 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 additional options for the request.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
+ 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8684,143 +8973,143 @@
- Ends an asynchronous operation to upload a file to a blob.
+ Ends an asynchronous operation to upload a file to a page blob.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a page blob.
- The file providing the blob content.
- A constant that determines how to open the file.
- A object that represents the current operation.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a page blob.
- The file providing the blob content.
- A constant that determines how to open the file.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a page blob.
- 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.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload a file to a blob.
+ Initiates an asynchronous operation to upload a file to a page blob.
- 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.
+ A string containing the file path providing the blob content.
+ A enumeration value that specifies how to open the file.
+ An object that represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Uploads the contents of a byte array to a blob.
+ Uploads the contents of a byte array to a page blob.
An array of bytes.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- Begins an asynchronous operation to upload the contents of a byte array to a blob.
+ Begins an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to upload the contents of a byte array to a blob.
+ Begins an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to upload the contents of a byte array to a blob.
+ Ends an asynchronous operation to upload the contents of a byte array to a page blob.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to upload the contents of a byte array to a blob.
+ Initiates an asynchronous operation to upload the contents of a byte array to a page blob.
An array of bytes.
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 represents the condition that must be met in order for the request to proceed.
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.
+ A object that represents the asynchronous operation.
Creates a page blob.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -8828,7 +9117,7 @@
Begins an asynchronous operation to create a page blob.
The maximum size of the page blob, in bytes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8837,10 +9126,10 @@
Begins an asynchronous operation to create a page blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8852,47 +9141,47 @@
- Returns a task that performs an asynchronous operation to create a page blob.
+ Initiates an asynchronous operation to create a page blob.
The maximum size of the blob, in bytes.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a page blob.
+ Initiates an asynchronous operation to create a page blob.
The maximum size of the blob, in bytes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a page blob.
+ Initiates an asynchronous operation to create a page blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a page blob.
+ Initiates an asynchronous operation to create a page blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Resizes the page blob to the specified size.
The 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -8900,7 +9189,7 @@
Begins an asynchronous operation to resize the page blob to the specified size.
The size of the page blob, in bytes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8909,10 +9198,10 @@
Begins an asynchronous operation to resize the page blob to the specified size.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8924,39 +9213,39 @@
- Returns a task that performs an asynchronous operation to resize the page blob to the specified size.
+ Initiates an asynchronous operation to resize the page blob to the specified size.
The size of the blob, in bytes.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to resize the page blob to the specified size.
+ Initiates an asynchronous operation to resize the page blob to the specified size.
The size of the blob, in bytes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to resize the page blob to the specified size.
+ Initiates an asynchronous operation to resize the page blob to the specified size.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to resize the page blob to the specified size.
+ Initiates an asynchronous operation to resize the page blob to the specified size.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -8964,8 +9253,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -8974,7 +9263,7 @@
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 .
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8984,10 +9273,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -8999,49 +9288,49 @@
- Returns a task that performs an asynchronous operation to set the page blob's sequence number.
+ Initiates an asynchronous operation to set the page blob's sequence number.
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 .
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the page blob's sequence number.
+ Initiates an asynchronous operation to set the page blob's sequence number.
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 .
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the page blob's sequence number.
+ Initiates an asynchronous operation to set the page blob's sequence number.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the page blob's sequence number.
+ Initiates an asynchronous operation to set the page blob's sequence number.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Checks existence of the blob.
- A object that specifies additional options for the request.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
true if the blob exists.
@@ -9058,7 +9347,7 @@
Begins an asynchronous request to check existence of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9068,7 +9357,7 @@
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9079,7 +9368,7 @@
If true, the command will be executed against the primary location.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9092,47 +9381,47 @@
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the blob.
+ Initiates an asynchronous operation to check existence of the blob.
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.
+ A object of type bool that represents the asynchronous operation.
- Populates a blob's properties and metadata.
+ Populates a page 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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to populate the blob's properties and metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9140,10 +9429,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9155,35 +9444,35 @@
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates an asynchronous operation to populate the blob's properties and metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to populate the blob's properties and metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
@@ -9191,8 +9480,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An enumerable collection of page ranges.
@@ -9200,7 +9489,7 @@
Begins an asynchronous operation to return a collection of valid page ranges and their starting and ending bytes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9210,10 +9499,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9226,53 +9515,53 @@
- Returns a task that performs an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
+ Initiates an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
+ Initiates an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
+ Initiates an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
+ Initiates an asynchronous operation to return a collection of page ranges and their starting and ending bytes.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's metadata.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9280,10 +9569,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9295,49 +9584,49 @@
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates an asynchronous operation to update the blob's metadata.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's metadata.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to update the blob's properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9345,10 +9634,10 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9360,50 +9649,50 @@
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates an asynchronous operation to update the blob's properties.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the blob's properties.
+ Initiates 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Deletes 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. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins an asynchronous operation to delete the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9412,10 +9701,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9427,45 +9716,45 @@
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates an asynchronous operation to delete the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the blob.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Deletes 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. If null, no condition is used.
- A object that specifies additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
true if the blob did already exist and was deleted; otherwise false.
@@ -9473,7 +9762,7 @@
Begins an asynchronous request to delete the blob if it already exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9482,10 +9771,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9498,53 +9787,53 @@
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation to delete the blob if it already exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the blob if it already exists.
+ Initiates an asynchronous operation 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type bool that represents the asynchronous operation.
Creates a snapshot of the blob.
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 additional options for the request, or null.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
- A blob snapshot.
+ A object that is a blob snapshot.
Begins an asynchronous operation to create a snapshot of the blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9553,10 +9842,10 @@
Begins an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9565,41 +9854,41 @@
Ends an asynchronous operation to create a snapshot of the blob.
An that references the pending asynchronous operation.
- A blob snapshot.
+ A object that is a blob snapshot.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a snapshot of the blob.
+ Initiates an asynchronous operation to create a snapshot of the blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
@@ -9608,9 +9897,9 @@
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.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The ID of the acquired lease.
@@ -9621,7 +9910,7 @@
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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9633,9 +9922,9 @@
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.
- The options for this operation. If null, default options will be used.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -9650,65 +9939,65 @@
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
- A object that represents the current operation.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to acquire a lease on this blob.
+ Initiates 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. 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.
+ A string representing the proposed lease ID for the new lease, or null if no lease ID is proposed.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type string that represents the asynchronous operation.
Renews 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9717,8 +10006,8 @@
Begins 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -9732,45 +10021,45 @@
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to renew a lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
Changes the lease ID on this blob.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The new lease ID.
@@ -9779,7 +10068,7 @@
Begins an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9789,8 +10078,8 @@
Begins an asynchronous operation to change the lease on this blob.
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -9805,55 +10094,55 @@
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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.
- A object that represents the current operation.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object of type string that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to change the lease on this blob.
+ Initiates an asynchronous operation to change the lease on this blob.
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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object of type string that represents the asynchronous operation.
Releases 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
Begins 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -9862,8 +10151,8 @@
Begins 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. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -9877,37 +10166,37 @@
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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.
+ An object that represents the condition that must be met in order for the request to proceed, including a required lease ID.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to release the lease on this blob.
+ Initiates 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 represents the condition that must be met in order for the request to proceed, including a required lease ID.
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.
+ A object that represents the asynchronous operation.
@@ -9916,8 +10205,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
@@ -9939,8 +10228,8 @@
A representing the amount of time to allow the lease to remain,
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.
- The options for this operation. If null, default options will be used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
An optional callback delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
@@ -9955,86 +10244,101 @@
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. If null, the break period is the remainder of the current lease,
or zero for infinite leases.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to break the current lease on this blob.
+ Initiates 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. 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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object of type that represents the asynchronous operation.
Writes pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- 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 additional options for the request.
+ An optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
Begins an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
Begins an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- 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 optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
@@ -10044,51 +10348,71 @@
- Returns a task that performs an asynchronous operation to write pages to a page blob.
+ Initiates an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
- A object that represents the current operation.
+ An optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to write pages to a page blob.
+ Initiates an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- An optional hash value that will be used to set the property
- on the blob. May be null or an empty string.
+ An optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to write pages to a page blob.
+ Initiates an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- 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 optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
- Returns a task that performs an asynchronous operation to write pages to a page blob.
+ Initiates an asynchronous operation to write pages to a page blob.
- A stream providing the page data.
+ A object providing the page data.
The offset at which to begin writing, in bytes. The offset must be a multiple of 512.
- 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 optional hash value used to ensure transactional integrity for the page. May be null or an empty string.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
+
+ Clients may send the Content-MD5 header for a given Write Pages operation as a means to ensure transactional integrity over the wire.
+ The parameter permits clients who already have access to a pre-computed MD5 value for a given byte range to provide it.
+ If the property is set to true and the parameter is set
+ to null, then the client library will calculate the MD5 value internally.
+
@@ -10096,8 +10420,8 @@
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -10106,7 +10430,7 @@
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -10116,10 +10440,10 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -10131,222 +10455,220 @@
- Returns a task that performs an asynchronous operation to clear pages from a page blob.
+ Initiates an asynchronous operation to clear pages from a page blob.
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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear pages from a page blob.
+ Initiates an asynchronous operation to clear pages from a page blob.
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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear pages from a page blob.
+ Initiates an asynchronous operation to clear pages from a page blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear pages from a page blob.
+ Initiates an asynchronous operation to clear pages from a page blob.
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Requests that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Starts an operation to start copying another page blob's contents, properties, and metadata to this page blob.
- 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 additional options for the request.
+ The 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- Requests that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Starts an operation to start copying another page blob's contents, properties, and metadata to this page blob.
- 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 additional options for the request.
+ The 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
The copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- Begins an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Begins an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page blob.
- The URI of a source blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ The of the source blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Begins an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page blob.
- The source blob.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ The that is the source blob.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins 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.
+ Begins an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page blob.
- 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.
+ The 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.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins 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.
+ Begins an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page blob.
- 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.
+ The that is 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 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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to request that the service start to copy a blob's contents, properties, and metadata to a new blob.
+ Ends an asynchronous operation to start copying another page blob's contents, properties, and metadata to this page blob.
An that references the pending asynchronous operation.
- The copy ID associated with the copy operation.
+ A string containing the copy ID associated with the copy operation.
- This method fetches the blob's ETag, last modified time, and part of the copy state.
+ This method fetches the blob's ETag, last-modified time, and part of the copy state.
The copy ID and copy status fields are fetched, and the rest of the copy state is cleared.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- The URI of a source blob.
- A object that represents the current operation.
+ The of the source blob.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- The URI of a source blob.
+ The of the source blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- The source blob.
- A object that represents the current operation.
+ The that is the source blob.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- The source blob.
+ The that is the source blob.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- 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.
+ The 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.
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.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- 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.
+ The 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.
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.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- 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.
+ The that is 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 additional options for the request.
An object that represents the context for the current operation.
- A object that represents the current operation.
+ A object of type string that represents the asynchronous operation.
- 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.
+ Initiates an asynchronous operation to start copying another blob's contents, properties, and metadata
+ to this page blob.
- 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.
+ The that is 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 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.
+ A object of type string that represents the asynchronous operation.
Aborts an ongoing blob copy operation.
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 additional options for the request.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
An object that represents the context for the current operation.
@@ -10354,7 +10676,7 @@
Begins an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -10363,10 +10685,10 @@
Begins 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -10378,46 +10700,46 @@
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates an asynchronous operation to abort an ongoing blob copy operation.
A string identifying the copy operation.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to abort an ongoing blob copy operation.
+ Initiates 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. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
+ A object that represents the asynchronous operation.
Implements the Create method.
The size in bytes.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that creates the blob.
@@ -10426,7 +10748,7 @@
Implementation for the Resize method.
The size in bytes.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that sets the metadata.
@@ -10436,7 +10758,7 @@
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 represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that sets the sequence number.
@@ -10444,8 +10766,8 @@
Implementation for the CreateSnapshot method.
- 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 collection of name-value pairs defining the metadata of the snapshot, or null.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
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.
@@ -10456,7 +10778,7 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A for getting the page ranges.
@@ -10467,7 +10789,7 @@
The page data.
The start offset.
The content MD5.
- An object that represents the access conditions for the blob. If null, no condition is used.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that writes the pages.
@@ -10477,7 +10799,7 @@
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.
+ An object that represents the condition that must be met in order for the request to proceed. If null, no condition is used.
A object that specifies additional options for the request.
A that writes the pages.
@@ -10502,23 +10824,23 @@
Initializes a new instance of the class using an absolute URI to the blob.
The absolute URI to the blob.
- The account credentials.
+ A object.
Initializes a new instance of the class using an absolute URI to the blob.
The absolute URI to the blob.
- The snapshot timestamp, if the blob is a snapshot.
- The account credentials.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
Initializes a new instance of the class using an absolute URI to the blob.
The absolute URI to the blob. The service assumes this is the URI for the blob in the primary location.
- The snapshot timestamp, if the blob is a snapshot.
- The account credentials.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A object.
@@ -10556,7 +10878,7 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
+ A object specifying the access policy for the shared access signature.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -10564,8 +10886,8 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- A stored access policy.
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
@@ -10573,17 +10895,27 @@
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob accessed with this SAS.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
A shared access signature.
Returns a shared access signature for the blob.
- The access policy for the shared access signature.
- The optional header values to set for a blob returned with this SAS.
- A stored access policy.
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A shared access signature.
+
+
+
+ Returns a shared access signature for the blob.
+
+ A object specifying the access policy for the shared access signature.
+ A object specifying optional header values to set for a blob accessed with this SAS.
+ A string identifying a stored access policy.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
A shared access signature.
@@ -10625,31 +10957,34 @@
Gets the blob's system properties.
- The blob's properties.
+ A object.
Gets the user-defined metadata for the blob.
- The blob's metadata, as a collection of name-value pairs.
+ An object containing the blob's metadata as a collection of name-value pairs.
Gets the blob's URI for the primary location.
- The absolute URI to the blob, at the primary location.
+ A specifying the absolute URI to the blob at the primary location.
- Gets the page blob's URIs for all locations.
+ Gets the page blob's URIs for both the primary and secondary locations.
- An object of type containing the page blob's URIs for all locations.
+ An object of type containing the page blob's URIs for both the primary and secondary locations.
Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.
- The blob's snapshot time, if the blob is a snapshot. If the blob is not a snapshot, the value of this property is null.
+ A containing the blob's snapshot time if the blob is a snapshot; otherwise, null.
+
+ If the blob is not a snapshot, the value of this property is null.
+
@@ -10661,45 +10996,44 @@
Gets the absolute URI to the blob, including query string information if the blob is a snapshot.
- The absolute URI to the blob, including snapshot query information if the blob is a snapshot.
+ A specifying the absolute URI to the blob, including snapshot query information if the blob is a snapshot.
- Gets the page blob's URI for all locations, including query string information if the blob is a snapshot.
+ Gets the page blob's URI for both the primary and secondary locations, including query string information if the blob is a snapshot.
- An object of type containing the page blob's URIs for all locations,
+ An object of type containing the page blob's URIs for both the primary and secondary locations,
including snapshot query information if the blob is a snapshot.
Gets the state of the most recent or pending copy operation.
- A object containing the copy state, or null if no copy blob state exists for this blob.
+ A object containing the copy state, or null if there is no copy state for the blob.
Gets the type of the blob.
- The type of the blob.
+ A enumeration value.
Gets the blob's name.
- The blob's name.
+ A string containing the blob's name.
Gets a object representing the blob's container.
- The blob's container.
+ A object.
- Gets the object representing the
- virtual parent directory for the blob.
+ Gets the object representing the virtual parent directory for the blob.
- The blob's virtual parent directory.
+ A object.
@@ -10773,7 +11107,7 @@
Extracts a object from the headers of a web response.
The HTTP web response.
- A object, or null if the web response does not contain a copy status.
+ A object, or null if the web response does not include copy state.
@@ -10831,7 +11165,7 @@
The copy ID.
The source URI of the copy, as a string.
A string formatted as progressBytes/TotalBytes.
- The copy completion time, as a string, or null.
+ The copy completion time, as a string, or null.
The copy status description, if any.
A object populated from the given strings.
@@ -10844,59 +11178,53 @@
Creates a web request to get the properties of the Blob service.
- The absolute URI to the Blob service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Blob service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Blob service properties.
-
+ An object that represents the context for the current operation.
+ A object.
Creates a web request to set the properties of the Blob service.
- The absolute URI to the Blob service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Blob service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to set the Blob service properties.
-
+ An object that represents the context for the current operation.
+ A object.
Creates a web request to get the stats of the Blob service.
- The absolute URI to the Blob service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Blob service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Blob service stats.
-
+ An object that represents the context for the current operation.
+ A object.
Writes Blob service properties to a stream, formatted in XML.
- The service properties to format and write to the stream.
- The stream to which the formatted properties are to be written.
+ A object.
+ The object to which the formatted properties are to be written.
Constructs a web request to create a new block blob or page blob, or to update the content
of an existing block blob.
- The absolute URI to the blob.
- The server timeout interval.
- The properties to set for the blob.
- The type of the blob.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A object.
+ A enumeration value.
For a page blob, the size of the blob. This parameter is ignored
for block blobs.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
@@ -10909,16 +11237,14 @@
Constructs a web request to return the list of valid page ranges for a page blob.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot timestamp, if the blob is a snapshot.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
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.
- The access condition to apply to the request.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
@@ -10932,121 +11258,121 @@
Constructs a web request to return the blob's system properties.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot timestamp, if the blob is a snapshot.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request for performing the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set system properties for a blob.
- The absolute URI to the blob.
- The server timeout interval.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
The blob's properties.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to resize a page blob.
- The absolute URI to the blob.
- The server timeout interval.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
The new blob size, if the blob is a page blob. Set this parameter to null to keep the existing blob size.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set a page blob's sequence number.
- The absolute URI to the blob.
- The server timeout interval.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
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.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to return the user-defined metadata for the blob.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot timestamp, if the blob is a snapshot.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request for performing the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set user-defined metadata for the blob.
- The absolute URI to the blob.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request for performing the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Adds user-defined metadata to the request as one or more name-value pairs.
- The web request.
- The user-defined metadata.
+ A object.
+ A object containing the user-defined metadata.
Adds user-defined metadata to the request as a single name-value pair.
- The web request.
- The metadata name.
- The metadata value.
+ A object.
+ A string containing the metadata name.
+ A string containing the metadata value.
Constructs a web request to delete a blob.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot timestamp, if the blob is a snapshot.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
A set of options indicating whether to delete only blobs, only snapshots, or both.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to create a snapshot of a blob.
- The absolute URI to the blob.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to use to acquire, renew, change, release or break the lease for the blob.
- The absolute URI to the blob.
+ A specifying the absolute URI to the blob.
The server timeout interval, in seconds.
- The lease action to perform.
- A lease ID to propose for the result of an acquire or change operation,
- or null if no ID is proposed for an acquire operation. This should be null for renew, release, and break operations.
+ A enumeration value indicating the lease action to perform.
+ A string specifying the lease ID to propose for the result of an acquire or change operation,
+ or null if no ID is proposed for an acquire operation. This parameter should be null for renew, release, and break operations.
The lease duration, in seconds, for acquire operations.
- If this is -1 then an infinite duration is specified. This should be null for renew, change, release, and break operations.
+ If this is -1 then an infinite duration is specified. This should be null for renew, change, release, and break operations.
The amount of time to wait, in seconds, after a break operation before the lease is broken.
- If this is null then the default time is used. This should be null for acquire, renew, change, and release operations.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ If this is null then the default time is used. This should be null for acquire, renew, change, and release operations.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
@@ -11080,46 +11406,46 @@
Constructs a web request to write a block to a block blob.
- The absolute URI to the blob.
- The server timeout interval.
- The block ID for this block.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A string specifying the block ID for this block.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to create or update a blob by committing a block list.
- The absolute URI to the blob.
- The server timeout interval.
- The properties to set for the blob.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request for performing the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A object specifying the properties to set for the blob.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to return the list of blocks for a block blob.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot timestamp, if the blob is a snapshot.
- The types of blocks to include in the list: committed, uncommitted, or both.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot timestamp, if the blob is a snapshot.
+ A enumeration value.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to write or clear a range of pages in a page blob.
- The absolute URI to the blob.
- The server timeout interval.
- The page range, defined by an object of type .
- A value of type , indicating the operation to perform on the page blob.
- The to apply to the request.
- An object for tracking the current operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A object.
+ A enumeration value indicating the operation to perform on the page blob.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
A web request to use to perform the operation.
@@ -11128,48 +11454,48 @@
Generates a web request to copy a blob.
- The absolute URI to the destination blob.
- The server timeout interval.
- The absolute URI to the source blob, including any necessary authentication parameters.
- The access condition to apply to the source blob.
- The access condition to apply to the destination blob.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the destination blob.
+ An integer specifying the server timeout interval.
+ A specifying the absolute URI to the source blob, including any necessary authentication parameters.
+ An object that represents the condition that must be met on the source blob in order for the request to proceed.
+ An object that represents the condition that must be met on the destination blob in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to abort a copy operation.
- The absolute URI to the blob.
- The server timeout interval.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
The ID string of the copy operation to be aborted.
- The access condition to apply to the request. Only lease conditions are supported for this operation.
- An object for tracking the current operation.
- A web request for performing the operation.
+ An object that represents the condition that must be met in order for the request to proceed. Only lease conditions are supported for this operation.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to get the blob's content, properties, and metadata.
- The absolute URI to the blob.
- The server timeout interval.
- The snapshot version, if the blob is a snapshot.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request for performing the operation.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot version, if the blob is a snapshot.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to return a specified range of the blob's content, together with its properties and metadata.
- The absolute URI to the blob.
- The server timeout interval, in seconds.
- The snapshot version, if the blob is a snapshot.
+ A specifying the absolute URI to the blob.
+ An integer specifying the server timeout interval.
+ A specifying the snapshot version, if the blob is a snapshot.
The byte offset at which to begin returning content.
- The number of bytes to return, or null to return all bytes through the end of the blob.
- If set to true, request an MD5 header for the specified range.
- The access condition to apply to the request.
- An object for tracking the current operation.
+ The number of bytes to return, or null to return all bytes through the end of the blob.
+ If set to true, an MD5 header is requested for the specified range.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
A web request to use to perform the operation.
@@ -11230,134 +11556,134 @@
Constructs a web request to create a new container.
- The absolute URI to the container.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to create a new container.
- The absolute URI to the container.
- The server timeout interval.
- An object for tracking the current operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
An object that specifies whether data in the container may be accessed publicly and the level of access.
- A web request to use to perform the operation.
+ A object.
Constructs a web request to delete the container and all of the blobs within it.
- The absolute URI to the container.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to return the user-defined metadata for this container.
- The absolute URI to the container.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to return the properties and user-defined metadata for this container.
- The absolute URI to the container.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to set user-defined metadata for the container.
- The absolute URI to the container.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to use to acquire, renew, change, release or break the lease for the container.
- The absolute URI to the container.
- The server timeout interval, in seconds.
- The lease action to perform.
- A lease ID to propose for the result of an acquire or change operation,
- or null if no ID is proposed for an acquire operation. This should be null for renew, release, and break operations.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ A enumeration value indicating the lease action to perform.
+ A string specifying the lease ID to propose for the result of an acquire or change operation,
+ or null if no ID is proposed for an acquire operation. This parameter should be null for renew, release, and break operations.
The lease duration, in seconds, for acquire operations.
- If this is -1 then an infinite duration is specified. This should be null for renew, change, release, and break operations.
+ If this is -1 then an infinite duration is specified. This should be null for renew, change, release, and break operations.
The amount of time to wait, in seconds, after a break operation before the lease is broken.
- If this is null then the default time is used. This should be null for acquire, renew, change, and release operations.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ If this is null then the default time is used. This should be null for acquire, renew, change, and release operations.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Adds user-defined metadata to the request as one or more name-value pairs.
- The web request.
- The user-defined metadata.
+ A object.
+ A object containing the user-defined metadata.
Adds user-defined metadata to the request as a single name-value pair.
- The web request.
- The metadata name.
- The metadata value.
+ A object.
+ A string containing the metadata name.
+ A string containing the metadata value.
Constructs a web request to return a listing of all containers in this storage account.
- The absolute URI for the account.
- The server timeout interval.
- A set of parameters for the listing operation.
- Additional details to return with the listing.
- An object for tracking the current operation.
+ A specifying the Blob service endpoint.
+ An integer specifying the server timeout interval.
+ A object.
+ A enumeration value that indicates whether to return container metadata with the listing.
+ An object that represents the context for the current operation.
A web request for the specified operation.
Constructs a web request to return the ACL for a container.
- The absolute URI to the container.
- The server timeout interval.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set the ACL for a container.
- The absolute URI to the container.
- The server timeout interval.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
The type of public access to allow for the container.
- The access condition to apply to the request.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ An object that represents the condition that must be met in order for the request to proceed.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to return a listing of all blobs in the container.
- The absolute URI to the container.
- The server timeout interval.
- A set of parameters for the listing operation.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the container.
+ An integer specifying the server timeout interval.
+ A object.
+ An object that represents the context for the current operation.
+ A object.
@@ -11377,14 +11703,14 @@
Creates the queue.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to create a queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11393,8 +11719,8 @@
Begins an asynchronous operation to create a queue.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11406,172 +11732,172 @@
- Returns a task that performs an asynchronous operation to create a queue.
+ Initiates an asynchronous operation to create a queue.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a queue.
+ Initiates an asynchronous operation to create a queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a queue.
+ Initiates an asynchronous operation to create a queue.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a queue.
+ Initiates an asynchronous operation to create a queue.
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.
+ A object that represents the asynchronous operation.
Creates the queue if it does not already exist.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
- Begins an asynchronous request to create the queue if it does not already exist.
+ Begins an asynchronous operation to create the queue if it does not already exist.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to create the queue if it does not already exist.
+ Begins an asynchronous operation to create the queue if it does not already exist.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Returns the result of an asynchronous request to create the queue if it does not already exist.
+ Returns the result of an asynchronous operation to create the queue if it does not already exist.
An that references the pending asynchronous operation.
true if the queue did not already exist and was created; otherwise, false.
- Returns a task that performs an asynchronous request to create the queue if it does not already exist.
+ Initiates an asynchronous operation to create the queue if it does not already exist.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to create the queue if it does not already exist.
+ Initiates an asynchronous operation to create the queue if it does not already exist.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to create the queue if it does not already exist.
+ Initiates an asynchronous operation to create the queue if it does not already exist.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to create the queue if it does not already exist.
+ Initiates an asynchronous operation to create the queue if it does not already exist.
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.
+ A object of type bool that represents the asynchronous operation.
Deletes the queue if it already exists.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to 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.
- Begins an asynchronous request to delete the queue if it already exists.
+ Begins an asynchronous operation to delete the queue if it already exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to delete the queue if it already exists.
+ Begins an asynchronous operation to delete the queue if it already exists.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Returns the result of an asynchronous request to delete the queue if it already exists.
+ Returns the result of an asynchronous operation to delete the queue if it already exists.
An that references the pending asynchronous operation.
true if the queue did not already exist and was created; otherwise, false.
- Returns a task that performs an asynchronous request to delete the queue if it already exists.
+ Initiates an asynchronous operation to delete the queue if it already exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the queue if it already exists.
+ Initiates an asynchronous operation to delete the queue if it already exists.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the queue if it already exists.
+ Initiates an asynchronous operation to delete the queue if it already exists.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to delete the queue if it already exists.
+ Initiates an asynchronous operation to delete the queue if it already exists.
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.
+ A object of type bool that represents the asynchronous operation.
Deletes the queue.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to delete a queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11580,8 +11906,8 @@
Begins an asynchronous operation to delete a queue.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11593,125 +11919,125 @@
- Returns a task that performs an asynchronous operation to delete a queue.
+ Initiates an asynchronous operation to delete a queue.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a queue.
+ Initiates an asynchronous operation to delete a queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a queue.
+ Initiates an asynchronous operation to delete a queue.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a queue.
+ Initiates an asynchronous operation to delete a queue.
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.
+ A object that represents the asynchronous operation.
Sets permissions for the queue.
- The permissions to apply to the queue.
- 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.
+ A object.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
- Begins an asynchronous request to set permissions for the queue.
+ Begins an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to set permissions for the queue.
+ Begins an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
+ A object.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Returns the result of an asynchronous request to set permissions for the queue.
+ Returns the result of an asynchronous operation to set permissions for the queue.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the queue.
+ Initiates an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the queue.
+ Initiates an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the queue.
+ Initiates an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the queue.
+ Initiates an asynchronous operation to set permissions for the queue.
- The permissions to apply to the queue.
+ A object.
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.
+ A object that represents the asynchronous operation.
Gets the permissions settings for the queue.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ A object.
- Begins an asynchronous request to get the permissions settings for the queue.
+ Begins an asynchronous operation to get the permissions settings for the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to get the permissions settings for the queue.
+ Begins an asynchronous operation to get the permissions settings for the queue.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11720,44 +12046,44 @@
Returns the asynchronous result of the request to get the permissions settings for the queue.
An that references the pending asynchronous operation.
- The queue's permissions.
+ A object.
- Returns a task that performs an asynchronous request to get the permissions settings for the queue.
+ Initiates an asynchronous operation to get the permissions settings for the queue.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the queue.
+ Initiates an asynchronous operation to get the permissions settings for the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the queue.
+ Initiates an asynchronous operation to get the permissions settings for the queue.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the queue.
+ Initiates an asynchronous operation to get the permissions settings for the queue.
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.
+ A object of type that represents the asynchronous operation.
Checks existence of the queue.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
true if the queue exists.
@@ -11766,87 +12092,87 @@
If true, the command will be executed against the primary location.
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.
+ An object that represents the context for the current operation.
true if the queue exists.
- Begins an asynchronous request to check existence of the queue.
+ Begins an asynchronous operation to check the existence of the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to check existence of the queue.
+ Begins an asynchronous operation to check the existence of the queue.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous request to check existence of the queue.
+ Begins an asynchronous operation to check the existence of the queue.
If true, the command will be executed against the primary location.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Returns the asynchronous result of the request to check existence of the queue.
+ Returns the asynchronous result of the request to check the existence of the queue.
An that references the pending asynchronous operation.
true if the queue exists.
- Returns a task that performs an asynchronous request to check existence of the queue.
+ Initiates an asynchronous operation to check the existence of the queue.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the queue.
+ Initiates an asynchronous operation to check the existence of the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the queue.
+ Initiates an asynchronous operation to check the existence of the queue.
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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to check existence of the queue.
+ Initiates an asynchronous operation to check the existence of the queue.
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.
+ A object of type bool that represents the asynchronous operation.
Sets the queue's user-defined metadata.
- 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 object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to set user-defined metadata on the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11854,60 +12180,60 @@
Begins an asynchronous operation to set user-defined metadata on the queue.
- 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 object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous request operation to set user-defined metadata on the queue.
+ Ends an asynchronous operation to set user-defined metadata on the queue.
An that references the pending asynchronous operation.
- Returns a task that performs an asynchronous operation to set user-defined metadata on the queue.
+ Initiates an asynchronous operation to set user-defined metadata on the queue.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set user-defined metadata on the queue.
+ Initiates an asynchronous operation to set user-defined metadata on the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set user-defined metadata on the queue.
+ Initiates an asynchronous operation to set user-defined metadata on the queue.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set user-defined metadata on the queue.
+ Initiates an asynchronous operation to set user-defined metadata on the queue.
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.
+ A object that represents the asynchronous operation.
Fetches the queue's attributes.
- 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 object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to fetch the queue's attributes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11916,8 +12242,8 @@
Begins an asynchronous operation to fetch the queue's attributes.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11929,51 +12255,51 @@
- Returns a task that performs an asynchronous operation to fetch the queue's attributes.
+ Initiates an asynchronous operation to fetch the queue's attributes.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to fetch the queue's attributes.
+ Initiates an asynchronous operation to fetch the queue's attributes.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to fetch the queue's attributes.
+ Initiates an asynchronous operation to fetch the queue's attributes.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to fetch the queue's attributes.
+ Initiates an asynchronous operation to fetch the queue's attributes.
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.
+ A object that represents the asynchronous operation.
Adds a message to the queue.
- The message to add.
- 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.
+ A object.
+ A specifying the maximum time to allow the message to be in the queue, or null.
+ A specifying the interval of time from now during which the message will be invisible.
If null then the message will be visible immediately.
- A object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to add a message to the queue.
- The message to add.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11981,13 +12307,13 @@
Begins an asynchronous operation to add a message to the queue.
- The message to add.
- 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.
+ A object.
+ A specifying the maximum time to allow the message to be in the queue, or null.
+ A specifying the interval of time from now during which the message will be invisible.
If null then the message will be visible immediately.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -11999,62 +12325,62 @@
- Returns a task that performs an asynchronous operation to add a message to the queue.
+ Initiates an asynchronous operation to add a message to the queue.
- The message to add.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to add a message to the queue.
+ Initiates an asynchronous operation to add a message to the queue.
- The message to add.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to add a message to the queue.
+ Initiates an asynchronous operation to add a message to the queue.
- The message to add.
- 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.
+ A object.
+ A specifying the maximum time to allow the message to be in the queue, or null.
+ A specifying the interval of time from now during which the message will be invisible.
If null then the message will be visible immediately.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to add a message to the queue.
+ Initiates an asynchronous operation to add a message to the queue.
- The message to add.
- 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.
+ A object.
+ A specifying the maximum time to allow the message to be in the queue, or null.
+ A specifying the interval of time from now during which the message will be invisible.
If null then the message will be visible immediately.
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.
+ A object that represents the asynchronous operation.
Updates the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
+ A object.
+ A specifying the visibility timeout interval.
Flags of values that specifies which parts of the message are to be updated.
- A object that specifies additional options for the request.
- An object that represents the context for the current operation.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12062,12 +12388,12 @@
Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12079,69 +12405,69 @@
- Returns a task that performs an asynchronous operation to update the visibility timeout and optionally the content of a message.
+ Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
- A object that represents the current operation.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the visibility timeout and optionally the content of a message.
+ Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the visibility timeout and optionally the content of a message.
+ Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to update the visibility timeout and optionally the content of a message.
+ Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
- The message to update.
- The visibility timeout interval.
- An EnumSet of values that specifies which parts of the message are to be updated.
+ A object.
+ A specifying the visibility timeout interval.
+ A set of values that specify which parts of the message are to be updated.
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.
+ A object that represents the asynchronous operation.
Deletes a message.
- A message.
- 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 object.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Deletes the specified message from the queue.
- The message ID.
- The pop receipt value.
- 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 string specifying the message ID.
+ A string specifying the pop receipt value.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to delete a message.
- A message.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12149,10 +12475,10 @@
Begins an asynchronous operation to delete a message.
- A message.
- 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 object.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12160,9 +12486,9 @@
Begins an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12170,11 +12496,11 @@
Begins an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
- 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 string specifying the message ID.
+ A string specifying the pop receipt value.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12186,75 +12512,75 @@
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- A message.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- A message.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- A message.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- A message.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
- A object that represents the current operation.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a message.
+ Initiates an asynchronous operation to delete a message.
- The message ID.
- The pop receipt value.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
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.
+ A object that represents the asynchronous operation.
@@ -12263,9 +12589,9 @@
visibility timeout period.
The number of messages to retrieve.
- The visibility timeout interval.
- 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 specifying the visibility timeout interval.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
An enumerable collection of messages.
@@ -12273,7 +12599,7 @@
Begins an asynchronous operation to get messages from the queue.
The number of messages to retrieve.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12284,10 +12610,10 @@
queue for the default visibility timeout period.
The number of messages to retrieve.
- The visibility timeout interval.
- 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 specifying the visibility timeout interval.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12300,58 +12626,58 @@
- Returns a task that performs an asynchronous operation to get messages from the queue.
+ Initiates an asynchronous operation to get messages from the queue.
The number of messages to retrieve.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get messages from the queue.
+ Initiates an asynchronous operation to get messages from the queue.
The number of messages to retrieve.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the specified number of messages from the queue using the
+ Initiates an asynchronous operation to get the specified number of messages from the queue using the
specified request options and operation context. This operation marks the retrieved messages as invisible in the
queue for the default visibility timeout period.
The number of messages to retrieve.
- The visibility timeout interval.
+ A specifying the visibility timeout interval.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the specified number of messages from the queue using the
+ Initiates an asynchronous operation to get the specified number of messages from the queue using the
specified request options and operation context. This operation marks the retrieved messages as invisible in the
queue for the default visibility timeout period.
The number of messages to retrieve.
- The visibility timeout interval.
+ A specifying the visibility timeout interval.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
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 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.
+ A specifying the visibility timeout interval.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ A object.
Begins an asynchronous operation to get a single message from the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12360,10 +12686,10 @@
Begins an asynchronous operation to get a single message from the queue, and specifies how long the message should be
reserved before it becomes visible, and therefore available for deletion.
- The visibility timeout interval.
- 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 specifying the visibility timeout interval.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12372,57 +12698,57 @@
Ends an asynchronous operation to get a single message from the queue.
An that references the pending asynchronous operation.
- A message.
+ A object.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue, and specifies how long the message should be
+ Initiates an asynchronous operation to get a single message from the queue, and specifies how long the message should be
reserved before it becomes visible, and therefore available for deletion.
- The visibility timeout interval.
+ A specifying the visibility timeout interval.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue, and specifies how long the message should be
+ Initiates an asynchronous operation to get a single message from the queue, and specifies how long the message should be
reserved before it becomes visible, and therefore available for deletion.
- The visibility timeout interval.
+ A specifying the visibility timeout interval.
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.
+ A object of type that represents the asynchronous operation.
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 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ An enumerable collection of objects.
Begins an asynchronous operation to peek messages from the queue.
The number of messages to peek.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12431,9 +12757,9 @@
Begins an asynchronous operation to peek messages from the queue.
The number of messages to peek.
- 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 object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12442,55 +12768,55 @@
Ends an asynchronous operation to peek messages from the queue.
An that references the pending asynchronous operation.
- An enumerable collection of messages.
+ An enumerable collection of objects.
- Returns a task that performs an asynchronous operation to peek messages from the queue.
+ Initiates an asynchronous operation to peek messages from the queue.
The number of messages to peek.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to peek messages from the queue.
+ Initiates an asynchronous operation to peek messages from the queue.
The number of messages to peek.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to peek messages from the queue.
+ Initiates an asynchronous operation to peek messages from the queue.
The number of messages to peek.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to peek messages from the queue.
+ Initiates an asynchronous operation to peek messages from the queue.
The number of messages to peek.
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.
+ A object that is an enumerable collection of type that represents the asynchronous operation.
Peeks a single message from the queue. A peek request retrieves a message from the queue without changing its visibility.
- 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.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ A object.
Begins an asynchronous operation to get a single message from the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12498,9 +12824,9 @@
Begins an asynchronous operation to peek a single message from the queue.
- 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 object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12509,50 +12835,50 @@
Ends an asynchronous operation to peek a single message from the queue.
An that references the pending asynchronous operation.
- A message.
+ A object.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get a single message from the queue.
+ Initiates an asynchronous operation to get a single message from the queue.
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.
+ A object of type that represents the asynchronous operation.
Clears all messages from the queue.
- 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 object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to clear all messages from the queue.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12560,9 +12886,9 @@
Begins an asynchronous operation to clear all messages from the queue.
- 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 object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -12574,33 +12900,33 @@
- Returns a task that performs an asynchronous operation to clear all messages from the queue.
+ Initiates an asynchronous operation to clear all messages from the queue.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear all messages from the queue.
+ Initiates an asynchronous operation to clear all messages from the queue.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear all messages from the queue.
+ Initiates an asynchronous operation to clear all messages from the queue.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to clear all messages from the queue.
+ Initiates an asynchronous operation to clear all messages from the queue.
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.
+ A object that represents the asynchronous operation.
@@ -12690,8 +13016,8 @@
Implementation for the DeleteMessage method.
- The message ID.
- The pop receipt value.
+ A string specifying the message ID.
+ A string specifying the pop receipt value.
A object that specifies additional options for the request.
A that deletes the queue.
@@ -12700,7 +13026,7 @@
Implementation for the GetPermissions method.
The number of messages to retrieve.
- The visibility timeout interval.
+ A specifying the visibility timeout interval.
A object that specifies additional options for the request.
A that gets the permissions.
@@ -12729,28 +13055,28 @@
Initializes a new instance of the class.
- The absolute URI to the queue.
+ A specifying the absolute URI to the queue.
Initializes a new instance of the class.
- The absolute URI to the queue.
- The account credentials.
+ A specifying the absolute URI to the queue.
+ A object.
Initializes a new instance of the class.
- The absolute URI to the queue.
- The account credentials.
+ A containing the absolute URI to the queue at both the primary and secondary locations.
+ A object.
Initializes a new instance of the class.
The queue name.
- A client object that specifies the endpoint for the queue service.
+ A client object that specifies the endpoint for the Queue service.
@@ -12766,7 +13092,7 @@
Gets the individual message address.
- The message id.
+ A string specifying the message ID.
The URI of the message.
@@ -12800,34 +13126,44 @@
Returns a shared access signature for the queue.
- The access policy for the shared access signature.
- A queue-level access policy.
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
+ A shared access signature, as a URI query string.
+ The query string returned includes the leading question mark.
+
+
+
+ Returns a shared access signature for the queue.
+
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
- Gets the service client for the queue.
+ Gets the object that represents the Queue service.
- A client object that specifies the endpoint for the queue service.
+ A object.
- Gets the queue's URI for the primary location.
+ Gets the queue URI for the primary location.
- The absolute URI to the queue, at the primary location.
+ A specifying the absolute URI to the queue at the primary location.
- Gets the queue's URIs for all locations.
+ Gets the queue URIs for both the primary and secondary locations.
- An object of type containing the queue's URIs for all locations.
+ An object of type containing the queue's URIs for both the primary and secondary locations.
Gets the name of the queue.
- The queue's name.
+ A string containing the name of the queue.
@@ -12839,166 +13175,166 @@
Gets or sets a value indicating whether to apply base64 encoding when adding or retrieving messages.
- True to encode messages; otherwise, false. The default value is true.
+ true to encode messages; otherwise, false. The default value is true.
Gets the queue's metadata.
- The queue's metadata.
+ An object containing the queue's metadata.
Provides a client-side logical representation of the Windows Azure Queue service. This client is used to configure and execute requests against the Queue service.
- The service client encapsulates the base URI for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
+ The service client encapsulates the endpoint or endpoints for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
Provides a client-side logical representation of the Windows Azure Queue service. This client is used to configure and execute requests against the Queue service.
- The service client encapsulates the base URI for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
+ The service client encapsulates the endpoint or endpoints for the Queue service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
Returns an enumerable collection of the queues in the storage account whose names begin with the specified prefix and that are retrieved lazily.
- The queue name prefix.
- An enumeration value that indicates which details to include in the listing.
- 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.
+ A string containing the queue name prefix.
+ A enumeration value that indicates which details to include in the listing.
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ An enumerable collection of objects of type that are retrieved lazily.
- Returns a result segment containing a collection of queues in the storage account.
+ Returns a result segment containing a collection of queues.
A continuation token returned by a previous listing operation.
- A result segment containing objects that implement .
+ A object.
- Returns a result segment containing a collection of queues in the storage account.
+ Returns a result segment containing a collection of queues.
- The queue name prefix.
+ A string containing the queue name prefix.
A continuation token returned by a previous listing operation.
- A result segment containing objects that implement .
+ A object.
- Returns a result segment containing a collection of queues in the storage account.
+ Returns a result segment containing a collection of queues.
- The queue name prefix.
+ A string containing the queue name prefix.
A enumeration describing which items to include in the listing.
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 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 .
+ A object that specifies additional options for the request. If null, default options are applied to the request.
+ An object that represents the context for the current operation.
+ A object.
- Returns a result segment containing a collection of queues in the storage account.
+ Returns a result segment containing a collection of queues.
- The queue name prefix.
- A enumeration describing which items to include in the listing.
- 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 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.
-
-
-
- Begins an asynchronous operation to return a result segment containing a collection of queue items.
-
- A returned by a previous listing 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.
- An that references the asynchronous operation.
-
-
-
- Begins an asynchronous operation to return a result segment containing a collection of queue items.
-
- The queue name prefix.
- A returned by a previous listing 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.
- An that references the asynchronous operation.
-
-
-
- Begins an asynchronous operation to return a result segment containing a collection of queue items.
-
- The queue name prefix.
- A enumeration describing which items to include in the listing.
- 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 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.
- An that references the asynchronous operation.
-
-
-
- Ends an asynchronous operation to return a result segment containing a collection of queue items.
-
- An that references the pending asynchronous operation.
- A queue result segment.
-
-
-
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
-
- A returned by a previous listing operation.
- A object that represents the current operation.
-
-
-
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
-
- A returned by a previous listing operation.
- A to observe while waiting for a task to complete.
- A object that represents the current operation.
-
-
-
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
-
- The queue name prefix.
- A returned by a previous listing operation.
- A object that represents the current operation.
-
-
-
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
-
- The queue name prefix.
- A returned by a previous listing operation.
- A to observe while waiting for a task to complete.
- A object that represents the current operation.
-
-
-
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
-
- The queue name prefix.
+ A string containing the queue name prefix.
A enumeration describing which items to include in the listing.
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 additional options for the request.
An object that represents the context for the current operation.
- A object that represents the current operation.
+ A of type .
+
+
+
+ Begins an asynchronous operation to return a result segment containing a collection of queues.
+
+ A returned by a previous listing operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object that will be passed to the callback delegate.
+ An that references the asynchronous operation.
+
+
+
+ Begins an asynchronous operation to return a result segment containing a collection of queues.
+
+ A string containing the queue name prefix.
+ A returned by a previous listing operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object that will be passed to the callback delegate.
+ An that references the asynchronous operation.
+
+
+
+ Begins an asynchronous operation to return a result segment containing a collection of queues.
+
+ A string containing the queue name prefix.
+ A enumeration describing which items to include in the listing.
+ 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 additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object that will be passed to the callback delegate.
+ An that references the asynchronous operation.
+
+
+
+ Ends an asynchronous operation to return a result segment containing a collection of queues.
+
+ An that references the pending asynchronous operation.
+ A object.
+
+
+
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
+
+ A returned by a previous listing operation.
+ A object of type that represents the asynchronous operation.
+
+
+
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
+
+ A returned by a previous listing operation.
+ A to observe while waiting for a task to complete.
+ A object of type that represents the asynchronous operation.
+
+
+
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
+
+ A string containing the queue name prefix.
+ A returned by a previous listing operation.
+ A object of type that represents the asynchronous operation.
+
+
+
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
+
+ A string containing the queue name prefix.
+ A returned by a previous listing operation.
+ A to observe while waiting for a task to complete.
+ A object of type that represents the asynchronous operation.
+
+
+
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
+
+ A string containing the queue name prefix.
+ A enumeration describing which items to include in the listing.
+ 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 additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection of queue items.
+ Initiates an asynchronous operation to return a result segment containing a collection of queues.
- The queue name prefix.
+ A string containing the queue name prefix.
A enumeration describing which items to include in the listing.
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.
@@ -13006,213 +13342,213 @@
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.
+ A object of type that represents the asynchronous operation.
Core implementation of the ListQueues method.
- The queue name prefix.
+ A string containing the queue name 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 enumeration describing which items to include in the listing.
- An object that specifies additional options for the request.
+ A object that specifies additional options for the request.
The continuation token.
A that lists the queues.
- Begins an asynchronous operation to get the properties of the queue service.
+ Begins an asynchronous operation to get service properties for the Queue service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get the properties of the queue service.
+ Begins an asynchronous operation to get service properties for the Queue service.
- 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.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get the properties of the queue service.
+ Ends an asynchronous operation to get service properties for the Queue service.
The result returned from a prior call to .
- A object containing the queue service properties.
+ A object.
- Returns a task that performs an asynchronous operation to get the properties of the queue service.
+ Initiates an asynchronous operation to get service properties for the Queue service.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the queue service.
+ Initiates an asynchronous operation to get service properties for the Queue service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the queue service.
+ Initiates an asynchronous operation to get service properties for the Queue service.
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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the properties of the queue service.
+ Initiates an asynchronous operation to get service properties for the Queue service.
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.
+ A object of type that represents the asynchronous operation.
- Gets the properties of the queue service.
+ Gets service properties for the Queue service.
- 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.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A containing the Queue service properties.
- Begins an asynchronous operation to set the properties of the queue service.
+ Begins an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to set the properties of the queue service.
+ Begins an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
- 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.
+ A object.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to set the properties of the queue service.
+ Ends an asynchronous operation to set service properties for the Queue service.
- The result returned from a prior call to .
+ The returned from a prior call to .
- Returns a task that performs an asynchronous operation to set the properties of the queue service.
+ Initiates an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the properties of the queue service.
+ Initiates an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the properties of the queue service.
+ Initiates an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the properties of the queue service.
+ Initiates an asynchronous operation to set service properties for the Queue service.
- The queue service properties.
+ A object.
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.
+ A object that represents the asynchronous operation.
- Sets the properties of the queue service.
+ Sets service properties for the Queue service.
- The queue service properties.
- 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.
+ A object.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
- Begins an asynchronous operation to get the stats of the queue service.
+ Begins an asynchronous operation to get service stats for the Queue service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get the stats of the queue service.
+ Begins an asynchronous operation to get service stats for the Queue service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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 to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get the stats of the queue service.
+ Ends an asynchronous operation to get service stats for the Queue service.
An that references the pending asynchronous operation.
- The queue service stats.
+ A object.
- Returns a task that performs an asynchronous operation to get the stats of the queue service.
+ Initiates an asynchronous operation to get service stats for the Queue service.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the queue service.
+ Initiates an asynchronous operation to get service stats for the Queue service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the queue service.
+ Initiates an asynchronous operation to get service stats for the Queue service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the queue service.
+ Initiates an asynchronous operation to get service stats for the Queue service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Gets the stats of the queue service.
+ Gets service stats for the Queue service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- The queue service stats.
+ A object.
@@ -13226,38 +13562,42 @@
- Initializes a new instance of the class using the specified queue service endpoint
+ Initializes a new instance of the class using the specified Queue service endpoint
and anonymous credentials.
- The queue service endpoint to use to create the client.
+ The containing the Queue service endpoint to use to create the client.
- Initializes a new instance of the class using the specified queue service endpoint
+ Initializes a new instance of the class using the specified Queue service endpoint
and account credentials.
- The queue service endpoint to use to create the client.
- The account credentials.
+ The containing the Queue service endpoint to use to create the client.
+ A object.
Initializes a new instance of the class using the specified Queue service endpoint
and account credentials.
- The Queue service endpoint to use to create the client.
- The account credentials.
+ A object containing the Queue service endpoint to use to create the client.
+ A object.
Returns a reference to a object with the specified name.
- The name of the queue, or an absolute URI to the queue.
- A reference to a queue.
+ A string containing the name of the queue, or an absolute URI to the queue.
+ A object.
Gets or sets the authentication scheme to use to sign HTTP requests.
+
+ This property is set only when Shared Key or Shared Key Lite credentials are used; it does not apply to authentication via a shared access signature
+ or anonymous access.
+
@@ -13270,48 +13610,49 @@
Gets or sets a buffer manager that implements the interface,
specifying a buffer pool for use with operations against the Queue service client.
+ An object of type .
- Gets the account credentials used to create the queue service client.
+ Gets the account credentials used to create the Queue service client.
- The account credentials.
+ A object.
Gets the base URI for the Queue service client, at the primary location.
- The base URI used to construct the Queue service client, at the primary location.
+ A object for the Queue service client, at the primary location.
- Gets the Queue service endpoints for all locations.
+ Gets the Queue service endpoints for both the primary and secondary locations.
- An object of type containing Queue service URIs for all locations.
+ An object of type containing Queue service URIs for both the primary and secondary locations.
Gets or sets the default retry policy for requests made via the Queue service client.
- The retry policy.
+ An object of type .
Gets or sets the default location mode for requests made via the Queue service client.
- The location mode.
+ A object.
- Gets or sets the default server and client timeout for requests made via the Queue service client.
+ Gets or sets the default server timeout for requests made via the Queue service client.
- The server and client timeout interval.
+ A containing the server timeout interval.
Gets or sets the maximum execution time across all potential retries.
- The maximum execution time across all potential retries.
+ A containing the maximum execution time across all potential retries.
@@ -13347,7 +13688,7 @@
Sets the content of this message.
- The new message content.
+ The content of the message as a byte array.
@@ -13374,8 +13715,8 @@
Initializes a new instance of the class with the given message ID and pop receipt.
- The message ID.
- The pop receipt token.
+ A string specifying the message ID.
+ A string containing the pop receipt token.
@@ -13396,7 +13737,7 @@
Sets the content of this message.
- The new message content.
+ A string containing the new message content.
@@ -13408,7 +13749,7 @@
Gets the maximum amount of time a message is kept in the queue.
- The maximum amount of time a message is kept in the queue.
+ A specifying the maximum amount of time a message is kept in the queue.
@@ -13426,37 +13767,37 @@
Gets the message ID.
- The message ID.
+ A string containing the message ID.
Gets the message's pop receipt.
- The pop receipt value.
+ A string containing the pop receipt value.
Gets the time that the message was added to the queue.
- The time that the message was added to the queue.
+ A indicating the time that the message was added to the queue.
Gets the time that the message expires.
- The time that the message expires.
+ A indicating the time that the message expires.
Gets the time that the message will next be visible.
- The time that the message will next be visible.
+ A indicating the time that the message will next be visible.
Gets the content of the message, as a string.
- The message content.
+ A string containing the message content.
@@ -13545,192 +13886,180 @@
Creates a web request to get the properties of the Queue service.
- The absolute URI to the Queue service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Queue service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Queue service properties.
-
+ An object that represents the context for the current operation.
+ A object.
Creates a web request to set the properties of the Queue service.
- The absolute URI to the Queue service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Queue service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to set the Queue service properties.
-
+ An object that represents the context for the current operation.
+ A object.
- Creates a web request to get the stats of the Queue service.
+ Creates a web request to get Queue service stats.
- The absolute URI to the Queue service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Queue service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Queue service stats.
-
+ An object that represents the context for the current operation.
+ A object.
Writes Queue service properties to a stream, formatted in XML.
- The service properties to format and write to the stream.
- The stream to which the formatted properties are to be written.
+ A object.
+ The object to which the formatted properties are to be written.
Constructs a web request to create a new queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to delete the queue and all of the messages within it.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to clear all messages in the queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to return the user-defined metadata for this queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Generates a web request to set user-defined metadata for the queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Adds user-defined metadata to the request as one or more name-value pairs.
- The web request.
- The user-defined metadata.
+ A object.
+ A object containing the user-defined metadata.
Adds user-defined metadata to the request as a single name-value pair.
- The web request.
- The metadata name.
- The metadata value.
+ A object.
+ A string containing the metadata name.
+ A string containing the metadata value.
Constructs a web request to return a listing of all queues in this storage account.
- The absolute URI for the account.
- The server timeout interval.
- A set of parameters for the listing operation.
- Additional details to return with the listing.
- An object for tracking the current operation.
- A web request for the specified operation.
+ A specifying the Queue service endpoint.
+ An integer specifying the server timeout interval.
+ A object.
+ A enumeration value that indicates whether to return queue metadata with the listing.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to return the ACL for a queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set the ACL for a queue.
- The absolute URI to the queue.
- The server timeout interval.
- An object for tracking the current operation.
- A web request to use to perform the operation.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to add a message for a queue.
- The absolute URI to the queue.
- The server timeout interval.
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
The message time-to-live, in seconds.
- The visibility timeout, in seconds.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ The length of time during which the message will be invisible, in seconds.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to update a message.
- The absolute URI to the message to update.
+ A specifying the absolute URI to the message to update.
The server timeout interval, in seconds.
- The pop receipt of the message.
- The length of time from now during which the message will be invisible, in seconds.
- An object for tracking the current operation.
- A web request for the update operation.
+ A string specifying the pop receipt of the message.
+ The length of time during which the message will be invisible, in seconds.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to update a message.
- The absolute URI to the message to update.
+ A specifying the absolute URI to the message to update.
The server timeout interval, in seconds.
- The pop receipt of the message.
- An object for tracking the current operation.
- A web request for the update operation.
+ A string specifying the pop receipt of the message.
+ An object that represents the context for the current operation.
+ A object.
- Constructs a web request to get messages for a queue.
+ Constructs a web request to get messages from a queue.
- The absolute URI to the queue.
- The server timeout interval.
- The number of messages.
- The visibility timeout.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An integer specifying the number of messages to get.
+ A value specifying the visibility timeout.
+ An object that represents the context for the current operation.
+ A object.
- Constructs a web request to peeks messages for a queue.
+ Constructs a web request to peek messages from a queue.
- The absolute URI to the queue.
- The server timeout interval.
- The number of messages.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ A specifying the absolute URI to the queue.
+ An integer specifying the server timeout interval.
+ An integer specifying the number of messages to peek.
+ An object that represents the context for the current operation.
+ A object.
@@ -13742,81 +14071,81 @@
- Executes the operation on a table, using the specified and .
+ Executes an operation on a table.
A object that represents the operation to perform.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- A containing the result of executing the operation on the table.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object.
- Begins an asynchronous table operation.
+ Begins execution of an asynchronous table operation.
A object that represents the operation to perform.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous table operation using the specified and .
+ Begins execution of an asynchronous table operation.
A object that represents the operation to perform.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous table operation.
+ Ends execution of an asynchronous table operation.
An that references the pending asynchronous operation.
A containing the result executing the operation on the table.
- Returns a task that performs an asynchronous table operation using the specified and .
+ Initiates an asynchronous operation that executes an asynchronous table operation.
A object that represents the operation to perform.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous table operation using the specified and .
+ Initiates an asynchronous operation that executes an asynchronous table operation.
A object that represents the operation to perform.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous table operation using the specified and .
+ Initiates an asynchronous operation that executes an asynchronous table operation.
A object that represents the operation to perform.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- A object that represents the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous table operation using the specified and .
+ Initiates an asynchronous operation that executes an asynchronous table operation.
A object that represents the operation to perform.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Executes a batch operation on a table as an atomic operation, using the specified and .
+ Executes a batch operation on a table as an atomic operation.
The object representing the operations to execute on the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ 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 contains the results, in order, of each operation in the on the table.
@@ -13824,239 +14153,239 @@
Begins an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to execute a batch of operations on a table, using the specified and .
+ Begins an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous batch of operations on a table.
+ Ends an asynchronous operation to execute a batch of operations on a table.
An that references the pending asynchronous operation.
A enumerable collection of type that contains the results, in order, of each operation in the on the table.
- Returns a task that performs an asynchronous operation to execute a batch of operations on a table, using the specified and .
+ Initiates an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
- A object that represents the current operation.
+ A object that is list of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a batch of operations on a table, using the specified and .
+ Initiates an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that is list of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a batch of operations on a table, using the specified and .
+ Initiates an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that is list of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a batch of operations on a table, using the specified and .
+ Initiates an asynchronous operation to execute a batch of operations on a table.
The object representing the operations to execute on the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that is list of type that represents the asynchronous operation.
- Executes a query on a table, using the specified and .
+ Executes a query on a table and returns an enumerable collection of objects.
A representing the query to execute.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection of objects, representing table entities returned by the query.
- Executes a query in segmented mode with the specified continuation token, , and .
+ Executes a segmented query on a table and returns a containing objects.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- A object containing the results of executing the query.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object of type containing the results of executing the query.
- Begins an asynchronous segmented query operation using the specified continuation token.
+ Begins an asynchronous segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to query a table in segmented mode using the specified continuation token, , and .
+ Begins an asynchronous segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous segmented query operation.
+ Ends an asynchronous segmented query on a table.
An that references the pending asynchronous operation.
- A object containing the results of executing the query.
+ A object of type containing the results of executing the query.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token, , and .
+ Initiates an asynchronous operation to perform a segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token, , and .
+ Initiates an asynchronous operation to perform a segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token, , and .
+ Initiates an asynchronous operation to perform a segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token, , and .
+ Initiates an asynchronous operation to perform a segmented query on a table.
A representing the query to execute.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Executes a query on a table, using the specified and , applying the to the result.
+ Executes a query on a table and applies the specified to the result.
A representing the query to execute.
An instance which creates a projection of the table query result entities into the specified type TResult.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection, containing the projection into type TResult, of the results of executing the query.
- Executes a query in segmented mode with the specified continuation token, , and .
+ Executes a segmented query on a table and applies the specified to the result.
A representing the query to execute.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
A object containing the results of executing the query.
- Begins an asynchronous segmented query operation using the specified continuation token.
+ Begins an asynchronous operation to execute a segmented query and apply the specified to the result.
A representing the query to execute.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Begins an asynchronous operation to execute a segmented query and apply the specified to the result.
The type into which the will project the query results.
- A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A instance specifying the table to query and the query parameters to use.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a segmented query and apply the specified to the result.
The type into which the will project the query results.
- A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A instance specifying the table to query and the query parameters to use.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a segmented query and apply the specified to the result.
The type into which the will project the query results.
- A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A instance specifying the table to query and the query parameters to use.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a segmented query and apply the specified to the result.
The type into which the will project the query results.
- A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A instance specifying the table to query and the query parameters to use.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a segmented query and apply the specified to the result.
The type into which the will project the query results.
- A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A instance specifying the table to query and the query parameters to use.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
@@ -14073,52 +14402,52 @@
- Executes a query on a table, using the specified and .
+ Executes a query on a table.
The entity type of the query.
- A TableQuery instance specifying the table to query and the query parameters to use, specialized for a type T implementing TableEntity.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A TableQuery instance specifying the table to query and the query parameters to use, specialized for a type TElement.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection, specialized for type TElement, of the results of executing the query.
- Queries a table in segmented mode using the specified continuation token, , and .
+ Executes a query on a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
A , specialized for type TElement, containing the results of executing the query.
- Begins an asynchronous operation to query a table in segmented mode, using the specified continuation token.
+ Begins an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to query a table in segmented mode using the specified continuation token and .
+ Begins an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous segmented table query operation.
+ Ends an asynchronous operation to query a table in segmented mode.
The type of the results to be returned. Can be the entity type specified in the Begin or the result type of the resolver
An that references the pending asynchronous operation.
@@ -14126,102 +14455,102 @@
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token and .
+ Initiates an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token and .
+ Initiates an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token and .
+ Initiates an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to query a table in segmented mode using the specified continuation token and .
+ Initiates an asynchronous operation to query a table in segmented mode.
The entity type of the query.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Executes a query, using the specified and , applying the to the result.
+ Executes a query and applies the specified to the result.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection, containing the projection into type TResult, of the results of executing the query.
- Executes a query in segmented mode with the specified continuation token, using the specified and , applying the to the results.
+ Executes a query in segmented mode and applies the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
A containing the projection into type TResult of the results of executing the query.
- Begins an asynchronous operation to query a table in segmented mode, using the specified and continuation token.
+ Begins an asynchronous operation to query a table in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Begins an asynchronous operation to execute a query in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous segmented table query operation.
+ Ends an asynchronous operation to execute a query in segmented mode.
The entity type of the query.
The type into which the will project the query results.
@@ -14230,18 +14559,18 @@
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a query in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a query in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
@@ -14249,47 +14578,47 @@
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a query in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query in segmented mode with the specified continuation token, , and , applies the to the results.
+ Initiates an asynchronous operation to execute a query in segmented mode and apply the specified to the results.
The entity type of the query.
The type into which the will project the query results.
A instance specifying the table to query and the query parameters to use, specialized for a type TElement.
An instance which creates a projection of the table query result entities into the specified type TResult.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
Creates a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to create a table.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14297,9 +14626,9 @@
Begins an asynchronous operation to create a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14311,47 +14640,47 @@
- Returns a task that performs an asynchronous operation to create a table.
+ Initiates an asynchronous operation to create a table.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table.
+ Initiates an asynchronous operation to create a table.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table.
+ Initiates an asynchronous operation to create a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table.
+ Initiates an asynchronous operation to create a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
Creates the table if it does not already exist.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
true if table was created; otherwise, false.
Begins an asynchronous operation to create a table if it does not already exist.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14359,61 +14688,61 @@
Begins an asynchronous operation to create a table if it does not already exist.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to determine whether a table exists.
+ Ends an asynchronous operation to create a table if it does not already exist.
An that references the pending asynchronous operation.
- true if table exists; otherwise, false.
+ true if table was created; otherwise, false.
- Returns a task that performs an asynchronous operation to create a table if it does not already exist.
+ Initiates an asynchronous operation to create a table if it does not already exist.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table if it does not already exist.
+ Initiates an asynchronous operation to create a table if it does not already exist.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table if it does not already exist.
+ Initiates an asynchronous operation to create a table if it does not already exist.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to create a table if it does not already exist.
+ Initiates an asynchronous operation to create a table if it does not already exist.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
Deletes a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to delete a table.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14421,9 +14750,9 @@
Begins an asynchronous operation to delete a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14435,47 +14764,47 @@
- Returns a task that performs an asynchronous operation to delete a table.
+ Initiates an asynchronous operation to delete a table.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a table.
+ Initiates an asynchronous operation to delete a table.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a table.
+ Initiates an asynchronous operation to delete a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete a table.
+ Initiates an asynchronous operation to delete a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
Deletes the table if it exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
true if the table was deleted; otherwise, false.
Begins an asynchronous operation to delete the table if it exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14483,9 +14812,9 @@
Begins an asynchronous operation to delete the table if it exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14498,40 +14827,40 @@
- Returns a task that performs an asynchronous operation to delete the table if it exists.
+ Initiates an asynchronous operation to delete the table if it exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the table if it exists.
+ Initiates an asynchronous operation to delete the table if it exists.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the table if it exists.
+ Initiates an asynchronous operation to delete the table if it exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to delete the table if it exists.
+ Initiates an asynchronous operation to delete the table if it exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
Checks whether the table exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
true if table exists; otherwise, false.
@@ -14539,15 +14868,15 @@
Checks whether the table exists.
If true, the command will be executed against the primary location.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
true if table exists; otherwise, false.
Begins an asynchronous operation to determine whether a table exists.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14555,9 +14884,9 @@
Begins an asynchronous operation to determine whether a table exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14566,9 +14895,9 @@
Begins an asynchronous operation to determine whether a table exists.
If true, the command will be executed against the primary location.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14581,47 +14910,47 @@
- Returns a task that performs an asynchronous operation to determine whether a table exists.
+ Initiates an asynchronous operation to determine whether a table exists.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to determine whether a table exists.
+ Initiates an asynchronous operation to determine whether a table exists.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to determine whether a table exists.
+ Initiates an asynchronous operation to determine whether a table exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to determine whether a table exists.
+ Initiates an asynchronous operation to determine whether a table exists.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type bool that represents the asynchronous operation.
Gets the permissions settings for the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The table's permissions.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ A object.
Begins an asynchronous request to get the permissions settings for the table.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14629,9 +14958,9 @@
Begins an asynchronous request to get the permissions settings for the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14640,52 +14969,52 @@
Returns the asynchronous result of the request to get the permissions settings for the table.
An that references the pending asynchronous operation.
- The table's permissions.
+ A object.
- Returns a task that performs an asynchronous request to get the permissions settings for the table.
+ Initiates an asynchronous operation to get the permissions settings for the table.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the table.
+ Initiates an asynchronous operation to get the permissions settings for the table.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the table.
+ Initiates an asynchronous operation to get the permissions settings for the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to get the permissions settings for the table.
+ Initiates an asynchronous operation to get the permissions settings for the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
Sets the permissions settings for the table.
A object that represents the permissions to set.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
Begins an asynchronous request to set permissions for the table.
- The permissions to apply to the table.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that represents the permissions to set.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14693,10 +15022,10 @@
Begins an asynchronous request to set permissions for the table.
- The permissions to apply to the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object that represents the permissions to set.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14708,57 +15037,57 @@
- Returns a task that performs an asynchronous request to set permissions for the table.
+ Initiates an asynchronous operation to set permissions for the table.
- The permissions to apply to the table.
- A object that represents the current operation.
+ A object that represents the permissions to set.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the table.
+ Initiates an asynchronous operation to set permissions for the table.
- The permissions to apply to the table.
+ A object that represents the permissions to set.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the table.
+ Initiates an asynchronous operation to set permissions for the table.
- The permissions to apply to the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that represents the permissions to set.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous request to set permissions for the table.
+ Initiates an asynchronous operation to set permissions for the table.
- The permissions to apply to the table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that represents the permissions to set.
+ 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.
+ A object that represents the asynchronous operation.
Initializes a new instance of the class.
- The absolute URI to the table.
+ A specifying the absolute URI to the table.
Initializes a new instance of the class.
- The absolute URI to the table.
- The account credentials.
+ A specifying the absolute URI to the table.
+ A object.
Initializes a new instance of the class.
- The absolute URI to the table.
- The account credentials.
+ A containing the absolute URI to the table at both the primary and secondary locations.
+ A object.
@@ -14771,12 +15100,27 @@
Returns a shared access signature for the table.
- The access policy for the shared access signature.
- An access policy identifier.
- The start partition key, or null.
- The start row key, or null.
- The end partition key, or null.
- The end row key, or null.
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
+ A string specifying the start partition key, or null.
+ A string specifying the start row key, or null.
+ A string specifying the end partition key, or null.
+ A string specifying the end row key, or null.
+ A shared access signature, as a URI query string.
+ The query string returned includes the leading question mark.
+ Thrown if the current credentials don't support creating a shared access signature.
+
+
+
+ Returns a shared access signature for the table.
+
+ A object specifying the access policy for the shared access signature.
+ A string identifying a stored access policy.
+ A string specifying the start partition key, or null.
+ A string specifying the start row key, or null.
+ A string specifying the end partition key, or null.
+ A string specifying the end row key, or null.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
A shared access signature, as a URI query string.
The query string returned includes the leading question mark.
Thrown if the current credentials don't support creating a shared access signature.
@@ -14785,7 +15129,7 @@
Returns the name of the table.
- The name of the table.
+ A string containing the name of the table.
@@ -14804,31 +15148,31 @@
Gets the object that represents the Table service.
- A client object that specifies the Table service endpoint.
+ A object .
- Gets the table name.
+ Gets the name of the table.
- The table name.
+ A string containing the name of the table.
- Gets the table's URI for the primary location.
+ Gets the table URI for the primary location.
- The absolute URI to the table, at the primary location.
+ A specifying the absolute URI to the table at the primary location.
- Gets the table's URIs for all locations.
+ Gets the table's URIs for both the primary and secondary locations.
- An object of type containing the table's URIs for all locations.
+ An object of type containing the table's URIs for both the primary and secondary locations.
Provides a client-side logical representation of the Windows Azure Table Service. This client is used to configure and execute requests against the Table Service.
- The service client encapsulates the base URI for the Table service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
+ The service client encapsulates the endpoint or endpoints for the Table service. If the service client will be used for authenticated access, it also encapsulates the credentials for accessing the storage account.
Provides a client-side logical representation of the Windows Azure Table service. This client is used to configure and execute requests against the Table service.
@@ -14837,161 +15181,151 @@
- Returns an enumerable collection of tables, which are retrieved lazily, that begin with the specified prefix.
+ Returns an enumerable collection of tables, retrieved lazily, that start with the specified prefix.
- The table name prefix.
+ A string containing the table name prefix.
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.
+ An object that represents the context for the current operation.
+ An enumerable collection of objects that are retrieved lazily.
- Returns an enumerable collection of tables in the storage account.
+ Returns a result segment of tables.
A returned by a previous listing operation.
- An enumerable collection of tables.
+ A object.
- Returns an enumerable collection of tables, which are retrieved lazily, that begin with the specified prefix.
+ Returns a result segment of tables, retrieved lazily, that start with the specified prefix.
- The table name prefix.
+ A string containing the table name prefix.
A returned by a previous listing operation.
- An enumerable collection of tables that are retrieved lazily.
+ A object.
- Returns an enumerable collection of tables that begin with the specified prefix and that are retrieved lazily.
+ Returns a result segment of tables, retrieved lazily, that start with the specified prefix.
- The table name prefix.
+ A string containing the table name 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 returned by a previous listing operation.
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.
+ An object that represents the context for the current operation.
+ A object.
- Begins an asynchronous operation to return a result segment containing a collection of tables
- in the storage account.
+ Begins an asynchronous operation to return a result segment of tables.
A returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Begins an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name prefix.
A returned by a previous listing operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Begins an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name 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 returned by a previous listing operation.
The server timeout, maximum execution time, and retry policies for the operation.
- An object that provides information on how the operation executed.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to return a result segment containing a collection
- of tables.
+ Ends an asynchronous operation to return a result segment of tables.
An that references the pending asynchronous operation.
- A result segment containing tables.
+ A object.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables.
A returned by a previous listing operation.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables.
A returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name prefix.
A returned by a previous listing operation.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name prefix.
A returned by a previous listing operation.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name 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 returned by a previous listing operation.
The server timeout, maximum execution time, and retry policies for the operation.
An object that represents the context for the current operation.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to return a result segment containing a collection
- of tables beginning with the specified prefix.
+ Initiates an asynchronous operation to return a result segment of tables that start with the specified prefix.
- The table name prefix.
+ A string containing the table name 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 returned by a previous listing operation.
The server timeout, maximum execution time, and retry policies for the operation.
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.
+ A object of type that represents the asynchronous operation.
Gets the service properties for the Table service.
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.
+ An object that represents the context for the current operation.
+ A object.
Begins an asynchronous operation to get the service properties of the Table service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
@@ -14999,9 +15333,9 @@
Begins an asynchronous operation to get the service properties of the Table service.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
@@ -15009,64 +15343,64 @@
Ends an asynchronous operation to get the service properties of the Table service.
The result returned from a prior call to .
- The table service properties.
+ A object.
- Returns a task that performs an asynchronous operation to get the service properties of the Table service.
+ Initiates an asynchronous operation to get the service properties of the Table service.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the service properties of the Table service.
+ Initiates an asynchronous operation to get the service properties of the Table service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the service properties of the Table service.
+ Initiates an asynchronous operation to get the service properties of the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the service properties of the Table service.
+ Initiates an asynchronous operation to get the service properties of the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
Sets the service properties of the Table service.
- The table service properties.
+ A object.
A object that specifies additional options for the request.
- An object that provides information on how the operation executed.
+ An object that represents the context for the current operation.
Begins an asynchronous operation to set the service properties of the Table service.
- The table service properties.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ A object.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
Begins an asynchronous operation to set the service properties of the Table service.
- The table service properties.
+ A object.
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.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
@@ -15077,100 +15411,100 @@
- Returns a task that performs an asynchronous operation to set the service properties of the Table service.
+ Initiates an asynchronous operation to set the service properties of the Table service.
- The table service properties.
- A object that represents the current operation.
+ A object.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the service properties of the Table service.
+ Initiates an asynchronous operation to set the service properties of the Table service.
- The table service properties.
+ A object.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the service properties of the Table service.
+ Initiates an asynchronous operation to set the service properties of the Table service.
- The table service properties.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to set the service properties of the Table service.
+ Initiates an asynchronous operation to set the service properties of the Table service.
- The table service properties.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object.
+ 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.
+ A object that represents the asynchronous operation.
- Begins an asynchronous operation to get the stats of the table service.
+ Begins an asynchronous operation to get service stats for the Table service.
- The callback delegate that will receive notification when the asynchronous operation completes.
- A user defined object to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Begins an asynchronous operation to get the stats of the table service.
+ Begins an asynchronous operation to get service stats for the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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 to be passed to the callback delegate.
+ An delegate that will receive notification when the asynchronous operation completes.
+ A user-defined object to be passed to the callback delegate.
An that references the asynchronous operation.
- Ends an asynchronous operation to get the stats of the table service.
+ Ends an asynchronous operation to get service stats for the Table service.
An that references the pending asynchronous operation.
- The table service stats.
+ A object.
- Returns a task that performs an asynchronous operation to get the stats of the table service.
+ Initiates an asynchronous operation to get service stats for the Table service.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the table service.
+ Initiates an asynchronous operation to get service stats for the Table service.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the table service.
+ Initiates an asynchronous operation to get service stats for the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to get the stats of the table service.
+ Initiates an asynchronous operation to get service stats for the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object of type that represents the asynchronous operation.
- Gets the stats of the table service.
+ Gets service stats for the Table service.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
An object that represents the context for the current operation.
- The table service stats.
+ A object.
@@ -15193,36 +15527,41 @@
Initializes a new instance of the class using the specified Table service endpoint
and anonymous credentials.
- The Table service endpoint to use to create the client.
+ A object containing the Table service endpoint to use to create the client.
Initializes a new instance of the class using the specified Table service endpoint
- and storage account credentials.
+ and account credentials.
- The Table service endpoint to use to create the client.
- The storage account credentials.
+ A object containing the Table service endpoint to use to create the client.
+ A object.
- Initializes a new instance of the class using the specified Blob service endpoint
+ Initializes a new instance of the class using the specified Table service endpoint
and account credentials.
- The Table service endpoint to use to create the client.
- The storage account credentials.
+ A object containing the Table service endpoint to use to create the client.
+ A object.
Gets a reference to the specified table.
- The name of the table.
+ A string containing the name of the table.
A object.
Gets or sets the authentication scheme to use to sign HTTP requests.
- Note that if you are using the legacy Table service API, which is based on WCF Data Services, the authentication scheme used by the TableServiceContext object will always be Shared Key Lite, regardless of the value of this property.
+
+ This property is set only when Shared Key or Shared Key Lite credentials are used; it does not apply to authentication via a shared access signature
+ or anonymous access.
+ Note that if you are using the legacy Table service API, which is based on WCF Data Services, the authentication scheme used by the
+ object will always be Shared Key Lite, regardless of the value of this property.
+
@@ -15235,54 +15574,57 @@
Gets or sets a buffer manager that implements the interface,
specifying a buffer pool for use with operations against the Table service client.
+ An object of type .
- Gets the storage account credentials used to create the Table service client.
+ Gets the account credentials used to create the Table service client.
- The storage account credentials.
+ A object.
- Gets the base URI for the Table service client, at the primary location.
+ Gets the base URI for the Table service client at the primary location.
- The base URI used to construct the Table service client, at the primary location.
+ A object containing the base URI used to construct the Table service client at the primary location.
- Gets the Table service endpoints for all locations.
+ Gets the Table service endpoints for both the primary and secondary locations.
- An object of type containing Table service URIs for all locations.
+ An object of type containing Table service URIs for both the primary and secondary locations.
Gets or sets the default retry policy for requests made via the Table service client.
- The retry policy.
+ An object of type .
Gets or sets the default location mode for requests made via the Table service client.
- The location mode.
+ A object.
- Gets or sets the default server and client timeout for requests.
+ Gets or sets the default server timeout for requests made via the Table service client.
- The server and client timeout interval.
+ A containing the server timeout interval.
Gets or sets the maximum execution time across all potential retries.
- The maximum execution time across all potential retries.
+ A containing the maximum execution time across all potential retries.
- Gets and sets the that is used for any table accessed with this object.
+ Gets and sets the table payload format for requests against any table accessed with this object.
- The TablePayloadFormat to use.
+ A enumeration value.
+ By default, this property is set to for .NET and Windows Phone. For Windows Runtime,
+ it is set to .
@@ -15290,6 +15632,12 @@
Is true if use path style URIs; otherwise, false.
+
+
+ Gets the associated account name for the client.
+
+ The account name.
+
Represents a custom attribute that can be used to ignore entity properties during serialization/de-serialization.
@@ -15435,7 +15783,7 @@
Returns an for the .
- An enumerable collection of items.
+ An for items.
@@ -15472,7 +15820,7 @@
- Creates a new table operation that replaces the contents of
+ Creates a new table operation that retrieves the contents of
the given entity in a table.
The class of type for the entity to retrieve.
@@ -15482,7 +15830,7 @@
- Creates a new table operation that replaces the contents of
+ Creates a new table operation that retrieves the contents of
the given entity in a table.
The return type which the specified will resolve the given entity to.
@@ -15505,7 +15853,7 @@
Creates a new table operation that deletes the given entity
from a table.
- The entity to be deleted from the table.
+ The object to be deleted from the table.
The object.
@@ -15513,7 +15861,7 @@
Creates a new table operation that inserts the given entity
into a table.
- The entity to be inserted into the table.
+ The object to be inserted into the table.
The object.
@@ -15521,9 +15869,9 @@
Creates a new table operation that inserts the given entity
into a table.
- The entity to be inserted into the table.
+ The object to be inserted into the table.
true if the message payload should be returned in the response to the insert operation. false otherwise.
- The table operation.
+ The object.
@@ -15531,8 +15879,7 @@
into a table if the entity does not exist; if the entity does
exist then its contents are merged with the provided entity.
- The entity whose contents are being inserted
- or merged.
+ The object to be inserted or merged.
The object.
@@ -15541,8 +15888,7 @@
into a table if the entity does not exist; if the entity does
exist then its contents are replaced with the provided entity.
- The entity whose contents are being inserted
- or replaced.
+ The object to be inserted or replaced.
The object.
@@ -15550,7 +15896,7 @@
Creates a new table operation that merges the contents of
the given entity with the existing entity in a table.
- The entity whose contents are being merged.
+ The object to be merged.
The object.
@@ -15558,7 +15904,7 @@
Creates a new table operation that replaces the contents of
the given entity in a table.
- The entity whose contents are being replaced.
+ The object to be replaced.
The object.
@@ -15566,8 +15912,8 @@
Creates a new table operation that replaces the contents of
the given entity in a table.
- The partition key of the entity to be replaced.
- The row key of the entity to be replaced.
+ A string containing the partition key of the entity to be replaced.
+ A string containing the row key of the entity to be replaced.
The object.
@@ -15591,7 +15937,7 @@
A class which implements .
- Represents a query against a specified table.
+ Represents a query against a Windows Azure table.
@@ -15601,18 +15947,18 @@
- Executes a query on a table, using the specified and .
+ Executes a query on a table.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection, specialized for type TElement, of the results of executing the query.
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object returned by a previous listing operation. May be null.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -15620,11 +15966,11 @@
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 for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A object returned by a previous listing operation. May be null.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
An that references the asynchronous operation.
@@ -15632,48 +15978,48 @@
Ends an asynchronous operation to execute a query and return the results as a result segment.
The reference to the pending asynchronous request to finish.
- A result segment containing objects of type .
+ A object of type .
- Begins an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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.
- A of object that represents the current operation.
+ A of type that represents the asynchronous operation.
- Begins an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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./// A to observe while waiting for a task to complete.
- A of object that represents the current operation.
+ A of type that represents the asynchronous operation.
- Begins an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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 for tracking the current operation.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- A of object that represents the current operation.
+ An object that represents the context for the current operation.
+ A object that specifies additional options for the request.
+ A of type that represents the asynchronous operation.
- Begins an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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 for tracking the current operation.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ An object that represents the context for the current operation.
+ A object that specifies additional options for the request.
A to observe while waiting for a task to complete.
- A of object that represents the current operation.
+ A of type that represents the asynchronous operation.
- Queries a table in segmented mode using the specified continuation token, , and .
+ Executes a segmented query against a table.
A object representing a continuation token from the server when the operation returns a partial result.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
A , specialized for type TElement, containing the results of executing the query.
@@ -15684,7 +16030,7 @@
- Generates a property filter condition string for the string value.
+ Generates a property filter condition string for a string value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15693,7 +16039,7 @@
- Generates a property filter condition string for the boolean value.
+ Generates a property filter condition string for a boolean value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15702,7 +16048,7 @@
- Generates a property filter condition string for the binary value.
+ Generates a property filter condition string for a binary value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15711,7 +16057,7 @@
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for a value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15720,7 +16066,7 @@
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for a value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15729,25 +16075,25 @@
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for an value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
- A containing the value to compare with the property.
+ An containing the value to compare with the property.
A string containing the formatted filter condition.
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for an value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
- A containing the value to compare with the property.
+ An containing the value to compare with the property.
A string containing the formatted filter condition.
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for a value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15756,7 +16102,7 @@
- Generates a property filter condition string for the value, formatted as the specified .
+ Generates a property filter condition string for a value, formatted as the specified .
A string containing the name of the property to compare.
A string containing the comparison operator to use.
@@ -15769,7 +16115,7 @@
Creates a filter condition using the specified logical operator on two filter conditions.
A string containing the first formatted filter condition.
- A string containing Operators.AND or Operators.OR.
+ A string containing the operator to use (AND, OR).
A string containing the second formatted filter condition.
A string containing the combined filter expression.
@@ -15777,9 +16123,10 @@
Defines the property names of the table entity properties to return when the table query is executed.
- The select clause is optional on a table query, used to limit the table properties returned from the server. By default, a query will return all properties from the table entity.
A list of string objects containing the property names of the table entity properties to return when the query is executed.
A instance set with the table entity properties to return.
+ The select clause is optional on a table query, and is used to limit the table properties returned from the server.
+ By default, a query will return all properties from the table entity.
@@ -15800,16 +16147,19 @@
Gets the type of the element(s) that are returned when the expression tree is executed.
+ A that represents the type of the element(s) that are returned when the expression tree associated with this object is executed.
Gets the expression tree.
+ The that is associated with this instance of .
Gets the query provider that is associated with this data source.
+ The that is associated with this data source.
@@ -15900,20 +16250,20 @@
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for an value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
- A containing the value to compare with the property.
+ An containing the value to compare with the property.
A string containing the formatted filter condition.
- Generates a property filter condition string for the value.
+ Generates a property filter condition string for an value.
A string containing the name of the property to compare.
A string containing the comparison operator to use.
- A containing the value to compare with the property.
+ An containing the value to compare with the property.
A string containing the formatted filter condition.
@@ -15940,7 +16290,7 @@
Creates a filter condition using the specified logical operator on two filter conditions.
A string containing the first formatted filter condition.
- A string containing Operators.AND or Operators.OR.
+ A string containing the operator to use (AND, OR).
A string containing the second formatted filter condition.
A string containing the combined filter expression.
@@ -16068,16 +16418,16 @@
Saves changes, using the retry policy specified for the service context.
- Additional options for saving changes.
-
-
+ A enumeration value.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
A that represents the result of the operation.
Begins an asynchronous operation to save changes, using the retry policy specified for the service context.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -16085,8 +16435,8 @@
Begins an asynchronous operation to save changes, using the retry policy specified for the service context.
- Additional options for saving changes.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A enumeration value.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -16094,9 +16444,9 @@
Begins an asynchronous operation to save changes, using the retry policy specified for the service context.
- Additional options for saving changes.
- An object for tracking the current operation.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ A enumeration value.
+ An object that represents the context for the current operation.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -16110,50 +16460,50 @@
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates an asynchronous operation to save changes, using the retry policy specified for the service context.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates 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.
+ A object that represents the asynchronous operation.
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates 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.
+ A enumeration value.
+ A object that represents the asynchronous operation.
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates an asynchronous operation to save changes, using the retry policy specified for the service context.
- Additional options for saving changes.
+ A enumeration value.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates 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.
+ A enumeration value.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a object that performs an asynchronous operation to save changes, using the retry policy specified for the service context.
+ Initiates 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.
+ A enumeration value.
+ 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.
+ A object that represents the asynchronous operation.
@@ -16253,15 +16603,15 @@
Returns an enumerator that iterates through the collection.
- A that can be used to iterate through the collection.
+ A that can be used to iterate through the collection.
Executes the request with any specified options.
- An object of type .
- An object for tracking the current operation.
+ A object that specifies additional options for the request.
+ An object that represents the context for the current operation.
An enumerable collection, specialized for type TElement, of the results of executing the query.
@@ -16270,7 +16620,7 @@
The continuation token.
The request options.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A result segment containing objects of type .
@@ -16278,7 +16628,7 @@
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.
- The callback delegate that will receive notification when the asynchronous operation completes.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -16289,7 +16639,7 @@
A continuation token returned by a previous listing operation, can be null.
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.
+ An delegate that will receive notification when the asynchronous operation completes.
A user-defined object that will be passed to the callback delegate.
An that references the asynchronous operation.
@@ -16302,41 +16652,41 @@
- Returns a task that performs an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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.
A to observe while waiting for a task to complete.
- A object that represents the current operation.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Returns a task that performs an asynchronous operation to execute a query and return the results as a result segment.
+ Initiates 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.
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ 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.
+ A object that represents the asynchronous operation.
- Gets the table service context.
+ Gets the Table service context.
An object of type .
@@ -16381,68 +16731,58 @@
Creates a web request to get the properties of the Table service.
- The absolute URI to the Table service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Table service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Table service properties.
-
+ An object that represents the context for the current operation.
+ A object.
Creates a web request to set the properties of the Table service.
- The absolute URI to the Table service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Table service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to set the Table service properties.
-
+ An object that represents the context for the current operation.
+ A object.
Creates a web request to get the stats of the Table service.
- The absolute URI to the Table service.
- An object of type , containing additional parameters to add to the URI query string.
+ A specifying the Table service endpoint.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval, in seconds.
- An object for tracking the current operation.
-
- A web request to get the Table service stats.
-
+ An object that represents the context for the current operation.
+ A object.
Writes Table service properties to a stream, formatted in XML.
- The service properties to format and write to the stream.
- The stream to which the formatted properties are to be written.
+ A object containing the service properties to format and write to the stream.
+ The object to which the formatted properties are to be written.
Constructs a web request to return the ACL for a table.
- The absolute URI to the table.
- An object of type , containing additional parameters to add to the URI query string.
- The server timeout interval.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ A specifying the absolute URI for the table.
+ A object specifying additional parameters to add to the URI query string.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
Constructs a web request to set the ACL for a table.
- The absolute URI to the table.
- An object of type , containing additional parameters to add to the URI query string.
- The server timeout interval.
- An object for tracking the current operation.
-
- A web request to use to perform the operation.
-
+ A specifying the absolute URI for the table.
+ A object specifying additional parameters to add to the URI query string.
+ An integer specifying the server timeout interval.
+ An object that represents the context for the current operation.
+ A object.
@@ -16500,7 +16840,7 @@
Look for an inner exception of type T.
The exception.
- The found exception or null.
+ The found exception or null.
@@ -16593,8 +16933,8 @@
The HTTP method.
The request URI.
The timeout.
- An object of type , containing additional parameters to add to the URI query string.
- An object for tracking the current operation.
+ A object specifying additional parameters to add to the URI query string.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16606,7 +16946,7 @@
The URI to create.
The timeout.
The builder.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16616,7 +16956,7 @@
The absolute URI to the resource.
The server timeout interval.
An optional query builder to use.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request to use to perform the operation.
@@ -16626,7 +16966,7 @@
The absolute URI to the resource.
The server timeout interval.
An optional query builder to use.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request to use to perform the operation.
@@ -16636,7 +16976,7 @@
The URI to query.
The timeout.
The builder.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16646,7 +16986,7 @@
The blob Uri.
The timeout.
The builder.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16656,7 +16996,7 @@
The blob Uri.
The timeout.
The builder.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16681,7 +17021,7 @@
The URI of the resource to delete.
The timeout.
The builder.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request for performing the operation.
@@ -16689,9 +17029,9 @@
Creates a web request to get the properties of the service.
The absolute URI to the service.
- An object of type , containing additional parameters to add to the URI query string.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request to get the service properties.
@@ -16703,7 +17043,7 @@
The absolute URI to the service.
The builder.
The server timeout interval.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request to set the service properties.
@@ -16713,9 +17053,9 @@
Creates a web request to get the stats of the service.
The absolute URI to the service.
- An object of type , containing additional parameters to add to the URI query string.
+ A object specifying additional parameters to add to the URI query string.
The server timeout interval.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A web request to get the service stats.
@@ -16993,27 +17333,27 @@
Synchronizes Read and Write operations, and handles exceptions.
- Read/Write operation or null if first run.
+ Read/Write operation or null if first run.
Helper method for EndOpWithCatch(IAsyncResult). Begins/Ends Read and Write Stream operations.
Should only be called by EndOpWithCatch(IAsyncResult) since it assumes we are inside the lock.
- Read/Write operation or null if first run.
+ Read/Write operation or null if first run.
Callback for timeout timer. Aborts the AsyncStreamCopier operation if a timeout occurs.
- Callback state.
+ AsyncStreamCopier operation.
True if the timer has timed out, false otherwise.
-
+
Aborts the AsyncStreamCopier operation.
- An object that stores state of the operation.
+ AsyncStreamCopier operation.
True if aborted due to a time out, or false for a general cancellation.
@@ -17294,33 +17634,33 @@
Constructs an empty access condition.
- An empty access condition.
+ An empty object.
Constructs an access condition such that an operation will be performed only if the resource's ETag value
matches the specified ETag value.
- The ETag value that must be matched.
- An AccessCondition object that represents the If-Match condition.
+ The ETag value to check against the resource's ETag.
+ An object that represents the If-Match condition.
Constructs an access condition such that an operation will be performed only if the resource has been
modified since the specified time.
- The time since which the resource must have been modified in order for the operation to proceed.
- An AccessCondition object that represents the If-Modified-Since condition.
+ A value specifying the time since which the resource must have been modified.
+ An object that represents the If-Modified-Since condition.
Constructs an access condition such that an operation will be performed only if the resource's ETag value
does not match the specified ETag value.
- The ETag value that must be matched, or "*".
- An AccessCondition object that represents the If-None-Match condition.
+ The ETag value to check against the resource's ETag, or "*" to require that the resource does not exist.
+ An object that represents the If-None-Match condition.
- If "*" is specified as the parameter then this condition requires that the resource does not exist.
+ If "*" is specified for the parameter, then this condition requires that the resource does not exist.
@@ -17328,40 +17668,40 @@
Constructs an access condition such that an operation will be performed only if the resource has not been
modified since the specified time.
- The time since which the resource must not have been modified in order for the operation to proceed.
- An AccessCondition object that represents the If-Unmodified-Since condition.
+ A value specifying the time since which the resource must not have been modified.
+ An object that represents the If-Unmodified-Since condition.
Constructs an access condition such that an operation will be performed only if resource's current sequence
number is less than or equal to the specified value.
- The value that the current sequence number of the resource must be less than or equal to.
- An AccessCondition object that represents the If-Sequence-Number-LE condition.
+ The value to compare to the current sequence number.
+ An object that represents the If-Sequence-Number-LE condition.
Constructs an access condition such that an operation will be performed only if resource's current sequence
number is less than the specified value.
- The value that the current sequence number of the resource must be less than.
- An AccessCondition object that represents the If-Sequence-Number-LT condition.
+ The value to compare to the current sequence number.
+ An object that represents the If-Sequence-Number-LT condition.
Constructs an access condition such that an operation will be performed only if resource's current sequence
number is equal to the specified value.
- The value that the current sequence number of the resource must be equal to.
- An AccessCondition object that represents the If-Sequence-Number-EQ condition.
+ The value to compare to the current sequence number.
+ An object that represents the If-Sequence-Number-EQ condition.
Constructs an access condition such that an operation will be performed only if the lease ID on the
resource matches the specified lease ID.
- The lease ID that must match the lease ID of the resource.
- An AccessCondition object that represents the lease condition.
+ The lease ID to compare to the lease ID of the resource.
+ An object that represents the lease condition.
@@ -17369,51 +17709,51 @@
matches the specified ETag value and the lease ID on the resource matches the lease ID specified in
the given access condition.
- An AccessCondition object that represents the lease condition.
+ An object that represents the condition that must be met in order for the request to proceed.
The ETag value that must be matched.
- An AccessCondition object that represents the If-Match and the lease conditions.
+ An object that represents the If-Match and the lease conditions.
- Gets or sets an ETag value that must match the ETag of the specified resource.
+ Gets or sets an ETag value for a condition specifying that the given ETag must match the ETag of the specified resource.
A string containing an ETag value, or "*" to match any ETag. If null, no condition exists.
- Gets or sets an ETag value that must not match the ETag of the specified resource.
+ Gets or sets an ETag value for a condition specifying that the given ETag must not match the ETag of the specified resource.
A string containing an ETag value, or "*" to match any ETag. If null, no condition exists.
- Gets or sets a time that must be before the last modification of a resource.
+ Gets or sets a value for a condition specifying a time since which a resource has been modified.
- A DateTimeOffset in UTC, or null if no condition exists.
+ A value specified in UTC, or null if no condition exists.
- Gets or sets a time that must not be before the last modification of a resource.
+ Gets or sets a value for a condition specifying a time since which a resource has not been modified.
- A DateTimeOffset in UTC, or null if no condition exists.
+ A value specified in UTC, or null if no condition exists.
- Gets or sets a sequence number that the current sequence number of a page blob must be less than or equal to in order for the operation to proceed.
+ Gets or sets a value for a condition specifying that the current sequence number must be less than or equal to the specified value.
A sequence number, or null if no condition exists.
This condition only applies to page blobs.
- Gets or sets a sequence number that the current sequence number of a page blob must be less than in order for the operation to proceed.
+ Gets or sets a value for a condition specifying that the current sequence number must be less than the specified value.
A sequence number, or null if no condition exists.
This condition only applies to page blobs.
- Gets or sets a sequence number that the current sequence number of a page blob must be equal to in order for the operation to proceed.
+ Gets or sets a value for a condition specifying that the current sequence number must be equal to the specified value.
A sequence number, or null if no condition exists.
This condition only applies to page blobs.
@@ -17422,7 +17762,7 @@
Gets or sets a lease ID that must match the lease on a resource.
- A lease ID, or null if no condition exists.
+ A string containing a lease ID, or null if no condition exists.
@@ -17613,41 +17953,41 @@
Initializes a new instance of the class using the specified
- account credentials and service endpoints.
+ credentials and service endpoints.
- The account credentials.
- The Blob service endpoint.
- The Queue service endpoint.
- The Table service endpoint.
+ A object.
+ A specifying the primary Blob service endpoint.
+ A specifying the primary Queue service endpoint.
+ A specifying the primary Table service endpoint.
Initializes a new instance of the class using the specified
account credentials and service endpoints.
- The account credentials.
- The Blob service endpoint.
- The Queue service endpoint.
- The Table service endpoint.
+ A object.
+ A specifying the Blob service endpoint or endpoints.
+ A specifying the Queue service endpoint or endpoints.
+ A specifying the Table service endpoint or endpoints.
Initializes a new instance of the class using the specified
- account credentials and the default service endpoints.
+ credentials, and specifies whether to use HTTP or HTTPS to connect to the storage services.
- An object of type that
- specifies the account name and account key for the storage account.
- True to use HTTPS to connect to storage service endpoints; otherwise, false.
+ A object.
+ true to use HTTPS to connect to storage service endpoints; otherwise, false.
+ Using HTTPS to connect to the storage services is recommended.
Initializes a new instance of the class using the specified
- account credentials and the default service endpoints.
+ credentials and endpoint suffix, and specifies whether to use HTTP or HTTPS to connect to the storage services.
- An object of type that
- specifies the account name and account key for the storage account.
+ A object.
The DNS endpoint suffix for all storage services, e.g. "core.windows.net".
- True to use HTTPS to connect to storage service endpoints; otherwise, false.
+ true to use HTTPS to connect to storage service endpoints; otherwise, false.
+ Using HTTPS to connect to the storage services is recommended.
@@ -17673,19 +18013,19 @@
Creates the Table service client.
- A client object that specifies the Table service endpoint.
+ A object.
Creates the Queue service client.
- A client object that specifies the Queue service endpoint.
+ A object.
Creates the Blob service client.
- A client object that specifies the Blob service endpoint.
+ A object.
@@ -17766,27 +18106,27 @@
Settings filter that requires all specified settings be present and valid.
A list of settings that must be present.
- The remaining settings or null if the filter's requirement is not satisfied.
+ The remaining settings or null if the filter's requirement is not satisfied.
Settings filter that removes optional values.
A list of settings that are optional.
- The remaining settings or null if the filter's requirement is not satisfied.
+ The remaining settings or null if the filter's requirement is not satisfied.
Settings filter that ensures that at least one setting is present.
A list of settings of which one must be present.
- The remaining settings or null if the filter's requirement is not satisfied.
+ The remaining settings or null if the filter's requirement is not satisfied.
Settings filter that ensures that a valid combination of credentials is present.
- The remaining settings or null if the filter's requirement is not satisfied.
+ The remaining settings or null if the filter's requirement is not satisfied.
@@ -17863,9 +18203,9 @@
- Gets a object that references the development storage account.
+ Gets a object that references the well-known development storage account.
- A reference to the development storage account.
+ A object representing the development storage account.
@@ -17891,43 +18231,43 @@
Gets the primary endpoint for the Blob service, as configured for the storage account.
- The primary Blob service endpoint.
+ A containing the primary Blob service endpoint.
Gets the primary endpoint for the Queue service, as configured for the storage account.
- The primary Queue service endpoint.
+ A containing the primary Queue service endpoint.
Gets the primary endpoint for the Table service, as configured for the storage account.
- The primary Table service endpoint.
+ A containing the primary Table service endpoint.
- Gets the endpoints for the Blob service, as configured for the storage account.
+ Gets the endpoints for the Blob service at the primary and secondary location, as configured for the storage account.
- An object of type containing the endpoints for the Blob service.
+ A containing the Blob service endpoints.
- Gets the endpoints for the Queue service, as configured for the storage account.
+ Gets the endpoints for the Queue service at the primary and secondary location, as configured for the storage account.
- An object of type containing the endpoints for the Queue service.
+ A containing the Queue service endpoints.
- Gets the endpoints for the Table service, as configured for the storage account.
+ Gets the endpoints for the Table service at the primary and secondary location, as configured for the storage account.
- An object of type containing the endpoints for the Table service.
+ A containing the Table service endpoints.
Gets the credentials used to create this object.
- The credentials used to create the object.
+ A object.
@@ -17944,15 +18284,15 @@
Returns a buffer to the pool.
- A reference to the buffer being returned.
+ A byte array specifying the buffer to return to the pool.
Buffer reference cannot be null.
Length of buffer does not match the pool's buffer length property.
- Gets a buffer of at least the specified size from the pool.
+ Gets a buffer of the specified size or larger from the pool.
- The size, in bytes, of the requested buffer.
+ The size, in bytes, of the requested buffer.
The value specified for cannot be less than zero.
A byte array that is the requested size of the buffer.
@@ -17973,7 +18313,7 @@
Gets the location that the token applies to.
- The location that the token applies to.
+ A enumeration value.
@@ -17985,25 +18325,25 @@
Gets or sets the retry policy for the request.
- The retry policy delegate.
+ An object of type .
Gets or sets the location mode of the request.
- The location mode of the request.
+ A object.
- Gets or sets the server timeout for the request.
+ Gets or sets the default server timeout for the request.
- The client and server timeout interval for the request.
+ A containing the server timeout interval.
Gets or sets the maximum execution time across all potential retries.
- The maximum execution time across all potential retries.
+ A containing the maximum execution time across all potential retries.
@@ -18055,7 +18395,7 @@
Gets or sets the client request ID.
- The client request ID.
+ A string containing the client request ID.
@@ -18083,13 +18423,13 @@
Gets or sets the start time of the operation.
- The start time of the operation.
+ A value indicating the start time of the operation.
Gets or sets the end time of the operation.
- The end time of the operation.
+ A value indicating the end time of the operation.
@@ -18194,39 +18534,39 @@
- Gets the location that the request was sent to.
+ Gets the location to which the request was sent.
- The location that the request was sent to.
+ A enumeration value.
Gets the extended error information.
- The extended error information.
+ A object.
Gets or sets the exception.
- The exception.
+ An object.
Gets the start time of the operation.
- The start time of the operation.
+ A value indicating the start time of the operation.
Gets the end time of the operation.
- The end time of the operation.
+ A value indicating the end time of the operation.
Represents a result segment that was retrieved from the total set of possible results.
- The type of the element.
+ The type of the element returned in the result segment.
@@ -18243,13 +18583,13 @@
Gets an enumerable collection of results.
- An enumerable collection of results.
+ An enumerable collection of results of type TElement.
Gets a continuation token to use to retrieve the next set of results with a subsequent call to the operation.
- The continuation token.
+ An object of type .
@@ -18315,6 +18655,25 @@
The delegate used to parse the error to get extended error information.
The storage exception.
+
+
+ Translates the specified exception into a storage exception.
+
+ The exception to translate.
+ The request result.
+ The delegate used to parse the error to get extended error information.
+ The error stream that contains the error information.
+ The storage exception.
+
+
+
+ Tries to translate the specified exception into a storage exception.
+
+ The exception to translate.
+ The request result.
+ The delegate used to parse the error to get extended error information.
+ The storage exception or null.
+
Translates the specified exception into a storage exception.
@@ -18324,6 +18683,13 @@
The delegate used to parse the error to get extended error information.
The storage exception.
+
+
+ Populate the RequestResult.
+
+ The request result.
+ The web response.
+
Represents an exception thrown by the Windows Azure storage client library.
@@ -18394,19 +18760,19 @@
Gets the storage service error code.
- The storage service error code.
+ A string containing the storage service error code.
Gets the storage service error message.
- The storage service error message.
+ A string containing the storage service error message.
Gets additional error details.
- The additional error details.
+ An containing the additional error details.
@@ -18432,21 +18798,21 @@
Initializes a new instance of the class using the primary endpoint for the storage account.
- The URI for the primary endpoint.
+ The for the primary endpoint.
Initializes a new instance of the class using the primary and secondary endpoints for the storage account.
- The URI for the primary endpoint.
- The URI for the secondary endpoint.
+ The for the primary endpoint.
+ The for the secondary endpoint.
Returns the URI for the storage account endpoint at the specified location.
- The primary or secondary location for the storage account.
- The of the specified location.
+ A enumeration value.
+ The for the endpoint at the the specified location.
@@ -18476,23 +18842,19 @@
Indicates whether the current object is equal to another object of the same type.
An object to compare with this object.
- true if the current object is equal to the parameter; otherwise, false.
+ true if the current object is equal to the parameter; otherwise, false.
The endpoint for the primary location for the storage account.
-
- The URI for the primary endpoint.
-
+ The for the primary endpoint.
The endpoint for the secondary location for the storage account.
-
- The URI for the secondary endpoint.
-
+ The for the secondary endpoint.
@@ -19029,10 +19391,10 @@
- Add the value with URI escaping.
+ Add the query string value with URI escaping.
- The query name.
- The query value.
+ The query string name.
+ The query string value.
@@ -19046,56 +19408,59 @@
Adds a query parameter to a URI.
- The original URI, including any existing query parameters.
- The URI with the new query parameter appended.
+ A containing the original URI, including any existing query parameters.
+ A object with the new query parameter appended.
Adds a query parameter to a URI.
- The original URI, including any existing query parameters.
- The URI with the new query parameter appended.
+ A object containing the original URI, including any existing query parameters.
+ A object with the new query parameter appended.
Contains helper methods for implementing shared access signatures.
-
+
Get the complete query builder for creating the Shared Access Signature query.
The shared access policy to hash.
- The optional header values to set for a blob returned with this SAS.
+ The optional header values to set for a blob returned with this SAS. Not valid for the 2012-02-12 version.
An optional identifier for the policy.
Either "b" for blobs or "c" for containers.
The signature to use.
- The name of the key used to create the signature, or null if the key is implicit.
+ The name of the key used to create the signature, or null if the key is implicit.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The finished query builder.
-
+
Get the complete query builder for creating the Shared Access Signature query.
The shared access policy to hash.
An optional identifier for the policy.
The signature to use.
- The name of the key used to create the signature, or null if the key is implicit.
+ The name of the key used to create the signature, or null if the key is implicit.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The finished query builder.
-
+
Get the complete query builder for creating the Shared Access Signature query.
The shared access policy to hash.
The name of the table associated with this shared access signature.
An optional identifier for the policy.
- The start partition key, or null.
- The start row key, or null.
- The end partition key, or null.
- The end row key, or null.
+ The start partition key, or null.
+ The start row key, or null.
+ The end partition key, or null.
+ The end row key, or null.
The signature to use.
- The name of the key used to create the signature, or null if the key is implicit.
+ The name of the key used to create the signature, or null if the key is implicit.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The finished query builder.
@@ -19127,41 +19492,51 @@
The query parameters.
A boolean that represents whether SignedResource is part of Sas or not. True for blobs, False for Queues and Tables.
-
+
Get the signature hash embedded inside the Shared Access Signature.
The shared access policy to hash.
An optional identifier for the policy.
The canonical resource string, unescaped.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The key value retrieved as an atomic operation used for signing.
The signed hash.
-
+
Get the signature hash embedded inside the Shared Access Signature.
The shared access policy to hash.
An optional identifier for the policy.
- The start partition key, or null.
- The start row key, or null.
- The end partition key, or null.
- The end row key, or null.
+ The start partition key, or null.
+ The start row key, or null.
+ The end partition key, or null.
+ The end row key, or null.
The canonical resource string, unescaped.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The key value retrieved as an atomic operation used for signing.
The signed hash.
-
+
Get the signature hash embedded inside the Shared Access Signature.
The shared access policy to hash.
- The optional header values to set for a blob returned with this SAS.
+ The optional header values to set for a blob returned with this SAS. Not valid for the 2012-02-12 version.
An optional identifier for the policy.
The canonical resource string, unescaped.
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
The key value retrieved as an atomic operation used for signing.
The signed hash.
+
+
+ Check to see if the SAS Version string provided is valid.
+
+ A string indicating the desired SAS version to use, in storage service version format. Value must be 2012-02-12 or later.
+ The valid SAS version string or the default (storage version) if given was null/invalid.
+
Gets the value of the x-ms-date or Date header.
@@ -19193,10 +19568,10 @@
- Gets the canonicalized header value to use for the specified date/time or null if it does not have a value.
+ Gets the canonicalized header value to use for the specified date/time or null if it does not have a value.
The date/time.
- The canonicalized header value to use for the specified date/time or null if it does not have a value.
+ The canonicalized header value to use for the specified date/time or null if it does not have a value.
@@ -19212,7 +19587,7 @@
The resource URI.
The name of the storage account.
- true when using the Shared Key Lite authentication scheme or the table service; otherwise, false.
+ true when using the Shared Key Lite authentication scheme or the Table service; otherwise, false.
The canonicalized resource string.
@@ -19241,15 +19616,15 @@
- Gets the first header value or null if no header values exist.
+ Gets the first header value or null if no header values exist.
The type of header objects contained in the enumerable.
An enumerable that contains header values.
- The first header value or null if no header values exist.
+ The first header value or null if no header values exist.
- Throws an exception if the string is empty or null.
+ Throws an exception if the string is empty or null.
The name of the parameter.
The value of the parameter.
@@ -19488,7 +19863,7 @@
The blob address.
If set to true use path style Uris.
- The name of the blob.
+ A string containing the name of the blob.
@@ -19518,19 +19893,6 @@
GetParentName(new Uri("http://test.blob.core.windows.net/mycontainer/", "/") will return "/mycontainer/"
-
-
- Retrieves the parent address for a blob Uri.
-
- The blob address.
- The delimiter.
- If set to true use path style Uris.
- The address of the parent.
-
- GetParentName(new Uri("http://test.blob.core.windows.net/mycontainer/myfolder/myblob", null))
- will return "http://test.blob.core.windows.net/mycontainer/myfolder/"
-
-
Gets the service client base address.
@@ -19560,7 +19922,7 @@
Appends a path to a list of URIs correctly using "/" as separator.
The base URI.
- The relative or absolute URI.
+ The relative or absolute URI.
The list of appended URIs.
@@ -19568,7 +19930,7 @@
Appends a path to a list of URIs correctly using "/" as separator.
The base URI.
- The relative or absolute URI.
+ The relative or absolute URI.
The separator.
The list of appended URIs.
@@ -19577,7 +19939,7 @@
Append a relative path to a URI, handling trailing slashes appropriately.
The base URI.
- The relative or absolute URI.
+ The relative or absolute URI.
The appended Uri.
@@ -19585,7 +19947,7 @@
Append a relative path to a URI, handling trailing slashes appropriately.
The base URI.
- The relative or absolute URI.
+ The relative or absolute URI.
The separator.
The appended Uri.
@@ -19623,6 +19985,7 @@
True to use path style Uris.
Name of the container.
The container URI.
+ true when the container is an explicit container. false, otherwise.
@@ -19632,6 +19995,7 @@
If set to true use path style Uris.
The resulting container name.
The resulting blob name.
+ A bool representing whether the blob is in an explicit container or not.
@@ -19770,11 +20134,11 @@
Determines whether the operation should be retried and the interval until the next retry.
- The number of retries for the given operation. A value of zero signifies this is the first error encountered.
- The status code for the last operation.
+ An integer specifying the number of retries for the given operation. A value of zero signifies this is the first error encountered.
+ An integer containing the status code for the last operation.
An object that represents the last exception encountered.
- The interval to wait until the next retry.
- An object for tracking the current operation.
+ A indicating the interval to wait until the next retry.
+ An object that represents the context for the current operation.
true if the operation should be retried; otherwise, false.
@@ -19782,7 +20146,7 @@
Determines whether the operation should be retried and the interval until the next retry.
A object that indicates the number of retries, the results of the last request, and whether the next retry should happen in the primary or secondary location, and specifies the location mode.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A object that indicates the location mode, and whether the next retry should happen in the primary or secondary location. If null, the operation will not be retried.
@@ -19794,18 +20158,18 @@
Initializes a new instance of the class using the specified delta and maximum number of retries.
- The back off interval between retries.
- The maximum number of retry attempts.
+ A specifying the back-off interval between retries.
+ An integer specifying the maximum number of retry attempts.
Determines whether the operation should be retried and the interval until the next retry.
- The number of retries for the given operation. A value of zero signifies this is the first error encountered.
- The status code for the last operation.
+ An integer specifying the number of retries for the given operation. A value of zero signifies this is the first error encountered.
+ An integer containing the status code for the last operation.
An object that represents the last exception encountered.
- The interval to wait until the next retry.
- An object for tracking the current operation.
+ A indicating the interval to wait until the next retry.
+ An object that represents the context for the current operation.
true if the operation should be retried; otherwise, false.
@@ -19813,7 +20177,7 @@
Determines whether the operation should be retried and the interval until the next retry.
A object that indicates the number of retries, the results of the last request, and whether the next retry should happen in the primary or secondary location, and specifies the location mode.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A object that indicates the location mode, and whether the next retry should happen in the primary or secondary location. If null, the operation will not be retried.
@@ -19836,18 +20200,18 @@
Initializes a new instance of the class using the specified delta and maximum number of retries.
- The back off interval between retries.
- The maximum number of retry attempts.
+ A specifying the back-off interval between retries.
+ An integer specifying the maximum number of retry attempts.
Determines whether the operation should be retried and the interval until the next retry.
- The number of retries for the given operation. A value of zero signifies this is the first error encountered.
- The status code for the last operation.
+ An integer specifying the number of retries for the given operation. A value of zero signifies this is the first error encountered.
+ An integer containing the status code for the last operation.
An object that represents the last exception encountered.
- The interval to wait until the next retry.
- An object for tracking the current operation.
+ A indicating the interval to wait until the next retry.
+ An object that represents the context for the current operation.
true if the operation should be retried; otherwise, false.
@@ -19855,7 +20219,7 @@
Determines whether the operation should be retried and the interval until the next retry.
A object that indicates the number of retries, the results of the last request, and whether the next retry should happen in the primary or secondary location, and specifies the location mode.
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A object that indicates the location mode, and whether the next retry should happen in the primary or secondary location. If null, the operation will not be retried.
@@ -19871,22 +20235,22 @@
- Requests should always be sent to the primary location.
+ Requests are always sent to the primary location.
- Requests should always be sent to the primary location first. If the request fails, it should be sent to the secondary location.
+ Requests are always sent to the primary location first. If a request fails, it is sent to the secondary location.
- Requests should always be sent to the secondary location.
+ Requests are always sent to the secondary location.
- Requests should always be sent to the secondary location first. If the request fails, it should be sent to the primary location.
+ Requests are always sent to the secondary location first. If a request fails, it is sent to the primary location.
@@ -19903,11 +20267,11 @@
Determines if the operation should be retried and how long to wait until the next retry.
- The number of retries for the given operation. A value of zero signifies this is the first error encountered.
- The status code for the last operation.
+ An integer specifying the number of retries for the given operation. A value of zero signifies this is the first error encountered.
+ An integer containing the status code for the last operation.
An object that represents the last exception encountered.
- The interval to wait until the next retry.
- An object for tracking the current operation.
+ A indicating the interval to wait until the next retry.
+ An object that represents the context for the current operation.
true if the operation should be retried; otherwise, false.
@@ -19932,25 +20296,25 @@
Gets the target location for the next retry.
- The target location for the next retry.
+ A enumeration value.
Gets the location mode for subsequent retries.
- The location mode for subsequent retries.
+ A object.
Gets the number of retries for the given operation.
- The number of retries for the given operation.
+ An integer specifying the number of retries for the given operation.
Gets the results of the last request.
- A object that represents the results of the last request.
+ A object.
@@ -19979,19 +20343,19 @@
Gets or sets the target location for the next retry.
- The target location for the next retry.
+ A enumeration value.
Gets or sets the location mode for subsequent retries.
- The location mode for subsequent retries.
+ A object.
Gets the interval until the next retry.
- The interval until the next retry.
+ A object specifying the interval until the next retry.
@@ -20002,31 +20366,31 @@
Gets the blob's system properties.
- The blob's properties.
+ A object.
Gets the user-defined metadata for the blob.
- The blob's metadata, as a collection of name-value pairs.
+ An object containing the blob's metadata as a collection of name-value pairs.
Gets the blob's URI for the primary location.
- The absolute URI to the blob, at the primary location.
+ A specifying the absolute URI to the blob at the primary location.
- Gets the list of URIs for all locations.
+ Gets the blob's URIs for both the primary and secondary locations.
- The list of URIs for all locations.
+ A object.
Gets the date and time that the blob snapshot was taken, if this blob is a snapshot.
- The blob's snapshot time if the blob is a snapshot; otherwise, null.
+ A containing the blob's snapshot time if the blob is a snapshot; otherwise, null.
If the blob is not a snapshot, the value of this property is null.
@@ -20035,7 +20399,7 @@
Gets the state of the most recent or pending copy operation.
- A object containing the copy state, or null if no copy blob state exists for this blob.
+ A object containing the copy state, or null if no copy blob state exists for this blob.
@@ -20051,13 +20415,13 @@
Gets or sets the public access setting for the container.
- The public access setting for the container.
+ A enumeration value.
Gets the set of shared access policies for the container.
- The set of shared access policies for the container.
+ A object.
@@ -20068,13 +20432,13 @@
Gets the ETag value for the container.
- The container's quoted ETag value.
+ A string containing the container's quoted ETag value.
Gets the container's last-modified time.
- The container's last-modified time.
+ A containing the container's last-modified time, in UTC format.
@@ -20156,13 +20520,13 @@
Gets or sets the next marker for continuing results for enumeration operations.
- The next marker.
+ A string containing the NextMarker value.
Gets or sets the storage location that the continuation token applies to.
- The storage location that the continuation token applies to.
+ A enumeration value.
@@ -20213,74 +20577,74 @@
Initializes a new instance of the class based on an existing instance.
- The set of properties to clone.
+ A object.
Lease-related properties will not be cloned, because a lease associated with the base blob is not copied to the snapshot.
Gets or sets the cache-control value stored for the blob.
- The blob's cache-control value.
+ A string containing the blob's cache-control value.
Gets or sets the content-disposition value stored for the blob.
- The blob's content-disposition value.
+ A string containing the blob's content-disposition value.
- If this property has not been set for the blob, it returns null.
+ If this property has not been set for the blob, it returns null.
Gets or sets the content-encoding value stored for the blob.
- The blob's content-encoding value.
+ A string containing the blob's content-encoding value.
- If this property has not been set for the blob, it returns null.
+ If this property has not been set for the blob, it returns null.
Gets or sets the content-language value stored for the blob.
- The blob's content-language value.
+ A string containing the blob's content-language value.
- If this property has not been set for the blob, it returns null.
+ If this property has not been set for the blob, it returns null.
Gets the size of the blob, in bytes.
- The blob's size in bytes.
+ A long value containing the blob's size in bytes.
Gets or sets the content-MD5 value stored for the blob.
- The blob's content-MD5 hash.
+ A string containing the blob's content-MD5 hash.
Gets or sets the content-type value stored for the blob.
- The blob's content-type value.
+ A string containing the blob's content-type value.
- If this property has not been set for the blob, it returns null.
+ If this property has not been set for the blob, it returns null.
Gets the blob's ETag value.
- The blob's ETag value.
+ A string containing the blob's ETag value.
Gets the the last-modified time for the blob, expressed as a UTC value.
- The blob's last-modified time, in UTC format.
+ A containing the blob's last-modified time, in UTC format.
@@ -20310,7 +20674,7 @@
If the blob is a page blob, gets the blob's current sequence number.
- The blob's current sequence number.
+ A long containing the blob's current sequence number.
@@ -20345,21 +20709,21 @@
- Gets or sets the retry policy.
+ Gets or sets the retry policy for the request.
- The retry policy.
+ An object of type .
Gets or sets the location mode of the request.
- The location mode of the request.
+ A object indicating the location mode of the request.
Gets or sets the server timeout interval for the request.
- The server timeout interval for the request.
+ A containing the server timeout interval for the request.
@@ -20372,13 +20736,13 @@
Gets or sets the number of blocks that may be simultaneously uploaded when uploading a blob that is greater than
the value specified by the property in size.
- The number of parallel operations that may proceed.
+ An integer value indicating the number of parallel blob upload operations that may proceed.
Gets or sets the maximum size of a blob in bytes that may be uploaded as a single blob.
- The maximum size of a blob, in bytes, that may be uploaded as a single blob,
+ A long indicating the maximum size of a blob, in bytes, that may be uploaded as a single blob,
ranging from between 1 and 64 MB inclusive.
@@ -20408,13 +20772,13 @@
Gets an enumerable collection of results.
- An enumerable collection of results.
+ An enumerable collection of objects.
Gets the continuation token used to retrieve the next segment of results. Returns null if there are no more results.
- The continuation token.
+ A object.
@@ -20506,13 +20870,13 @@
Gets an enumerable collection of results.
- An enumerable collection of results.
+ An enumerable collection of objects.
Gets the continuation token used to retrieve the next segment of results.
- The continuation token.
+ A object.
@@ -20541,25 +20905,25 @@
Gets the source URI of a copy operation.
- A indicating the source of a copy operation, or null.
+ A indicating the source of a copy operation, or null.
Gets the number of bytes copied in the operation so far.
- The number of bytes copied in the operation so far, or null.
+ The number of bytes copied in the operation so far, or null.
Gets the total number of bytes in the source of the copy.
- The number of bytes in the source, or null.
+ The number of bytes in the source, or null.
Gets the description of the current status, if any.
- A status description string, or null.
+ A status description string, or null.
@@ -20737,7 +21101,7 @@
Gets a value indicating whether or not the block has been committed.
- True if the block has been committed; otherwise, false.
+ true if the block has been committed; otherwise, false.
@@ -20809,31 +21173,31 @@
Gets or sets the cache-control header returned with the blob.
- The cache-control value.
+ A string containing the cache-control value.
Gets or sets the content-disposition header returned with the blob.
- The content-disposition value.
+ A string containing the content-disposition value.
Gets or sets the content-encoding header returned with the blob.
- The content-encoding value.
+ A string containing the content-encoding value.
Gets or sets the content-language header returned with the blob.
- The content-language value.
+ A string containing the content-language value.
Gets or sets the content-type header returned with the blob.
- The content-type value.
+ A string containing the content-type value.
@@ -20888,14 +21252,14 @@
Removes the value with the specified key from the shared access policies collection.
- The key of the item to remove.
+ A string containing the key of the item to remove.
true if the element is successfully found and removed; otherwise, false. This method returns false if the key is not found.
Gets the item associated with the specified key.
- The key of the value to get.
+ A string containing the key of the value to get.
The item to get.
The item associated with the specified key, if the key is found; otherwise, the default value for the type.
@@ -20919,7 +21283,8 @@
- Copies each key/ value pair in the shared access policies collection to a compatible one-dimensional array, starting at the specified index of the target array.
+ Copies each key in the key/ value pair to a compatible one-dimensional array, starting at the specified index
+ of the target array.
The one-dimensional array of objects that is the destination of the elements copied from the shared access policies collection.
The zero-based index in at which copying begins.
@@ -20947,7 +21312,7 @@
Gets a collection containing the keys in the shared access policies collection.
- A collection containing the keys in the of shared access policies collection.
+ A collection of strings containing the keys of the shared access policies collection.
@@ -20959,7 +21324,7 @@
Gets or sets the item associated with the specified key.
- The key of the value to get or set.
+ A string containing the key of the value to get or set.
The item associated with the specified key, or null if key is not in the shared access policies collection.
@@ -20989,33 +21354,33 @@
Converts the permissions specified for the shared access policy to a string.
- The shared access permissions.
- The shared access permissions in string format.
+ A object.
+ The shared access permissions, in string format.
Constructs a object from a permissions string.
- The shared access permissions in string format.
- A set of shared access permissions.
+ The shared access permissions, in string format.
+ A object.
Gets or sets the start time for a shared access signature associated with this shared access policy.
- The shared access start time.
+ A specifying the shared access start time.
Gets or sets the expiry time for a shared access signature associated with this shared access policy.
- The shared access expiry time.
+ A specifying the shared access expiry time.
Gets or sets the permissions for a shared access signature associated with this shared access policy.
- The permissions.
+ A object.
@@ -21478,7 +21843,7 @@
Initializes a new instance of the class.
- The name of the blob.
+ A string containing the name of the blob.
The blob's attributes.
@@ -21490,19 +21855,19 @@
Gets the name of the blob item.
- The name of the blob item.
+ A string containing the name of the blob item.
Gets the blob item's system properties.
- The blob item's properties.
+ A object.
Gets the user-defined metadata for the blob item.
- The blob item's metadata, as a collection of name-value pairs.
+ An object containing the blob item's metadata as a collection of name-value pairs.
@@ -21523,7 +21888,7 @@
Gets the state of the most recent or pending copy operation.
- A object containing the copy state, or null if no copy blob state exists for this blob.
+ A object containing the copy state, or null if no copy blob state exists for this blob.
@@ -21619,7 +21984,7 @@
Gets the listing context from the XML response.
- A set of parameters for the listing operation.
+ A object.
@@ -21631,31 +21996,31 @@
Gets the Prefix value provided for the listing operation from the XML response.
- The Prefix value.
+ A string containing the Prefix value.
Gets the Marker value provided for the listing operation from the XML response.
- The Marker value.
+ A string containing the Marker value.
Gets the Delimiter value provided for the listing operation from the XML response.
- The Delimiter value.
+ A string containing the Delimiter value.
Gets the MaxResults value provided for the listing operation from the XML response.
- The MaxResults value.
+ An integer containing the MaxResults value.
- Gets the NextMarker value from the XML response, if the listing was not complete.
+ Gets or sets the NextMarker value from the XML response, if the listing was not complete.
- The NextMarker value.
+ A string containing the NextMarker value.
@@ -21724,7 +22089,7 @@
Gets the listing context from the XML response.
- A set of parameters for the listing operation.
+ A object.
@@ -21736,25 +22101,25 @@
Gets the Prefix value provided for the listing operation from the XML response.
- The Prefix value.
+ A string containing the Prefix value.
Gets the Marker value provided for the listing operation from the XML response.
- The Marker value.
+ A string containing the Marker value.
Gets the MaxResults value provided for the listing operation from the XML response.
- The MaxResults value.
+ An integer containing the MaxResults value.
- Gets the NextMarker value from the XML response, if the listing was not complete.
+ Gets or sets the NextMarker value from the XML response, if the listing was not complete.
- The NextMarker value.
+ A string containing the NextMarker value.
@@ -21814,7 +22179,6 @@
Represents a continuation token returned by the Queue service.
- continuation tokens are used in methods that return a object, such as .
@@ -21850,15 +22214,15 @@
- Gets or sets the NextMarker for continuing results for CloudQueue enumeration operations.
+ Gets or sets the next marker for continuing results for enumeration operations.
- The next marker.
+ A string containing the NextMarker value.
Gets or sets the storage location that the continuation token applies to.
- The storage location that the continuation token applies to.
+ A enumeration value.
@@ -21901,19 +22265,19 @@
Gets or sets the retry policy for the request.
- The retry policy delegate.
+ An object of type .
Gets or sets the location mode of the request.
- The location mode of the request.
+ A object indicating the location mode of the request.
- Gets or sets the server timeout for the request.
+ Gets or sets the server timeout interval for the request.
- The client and server timeout interval for the request.
+ A containing the server timeout interval for the request.
@@ -21930,13 +22294,13 @@
Gets an enumerable collection of results.
- An enumerable collection of results.
+ An enumerable collection of objects.
Gets the continuation token used to retrieve the next segment of results. Returns null if there are no more results.
- The continuation token.
+ A object.
@@ -21977,28 +22341,28 @@
Adds the specified key and value to the collection of shared access policies.
- The key of the value to add.
+ A string containing the key of the value to add.
The value to add the collection of shared access policies.
Determines whether the collection of shared access policies contains the specified key.
- The key to locate in the collection of shared access policies.
+ A string containing the key to locate in the collection of shared access policies.
true if the collection of shared access policies contains an element with the specified key; otherwise, false.
Removes the value with the specified key from the shared access policies collection.
- The key of the item to remove.
+ A string containing the key of the item to remove.
true if the element is successfully found and removed; otherwise, false. This method returns false if the key is not found.
Gets the item associated with the specified key.
- The key of the value to get.
+ A string containing the key of the value to get.
The item to get.
The item associated with the specified key, if the key is found; otherwise, the default value for the type.
@@ -22050,7 +22414,7 @@
Gets a collection containing the keys in the shared access policies collection.
- A collection containing the keys in the of shared access policies collection.
+ A collection of strings containing the keys of the shared access policies collection.
@@ -22062,7 +22426,7 @@
Gets or sets the item associated with the specified key.
- The key of the value to get or set.
+ A string containing the key of the value to get or set.
The item associated with the specified key, or null if key is not in the shared access policies collection.
@@ -22092,7 +22456,7 @@
Converts the permissions specified for the shared access policy to a string.
- The shared access permissions.
+ A object.
The shared access permissions in string format.
@@ -22100,25 +22464,25 @@
Constructs a object from a permissions string.
The shared access permissions in string format.
- A set of shared access permissions.
+ A object.
Gets or sets the start time for a shared access signature associated with this shared access policy.
- The shared access start time.
+ A specifying the shared access start time.
Gets or sets the expiry time for a shared access signature associated with this shared access policy.
- The shared access expiry time.
+ A specifying the shared access expiry time.
Gets or sets the permissions for a shared access signature associated with this shared access policy.
- The permissions.
+ A object.
@@ -22509,11 +22873,11 @@
- Specifies a set of on the query.
+ Specifies a set of with which the query will be executed.
The entity type of the query.
A query that implements .
- A object that specifies execution options, such as retry policy and timeout settings, for the operation.
+ A object that specifies additional options for the request.
A object with the specified request options set.
@@ -22523,7 +22887,7 @@
The entity type of the query.
A query that implements .
- An object for tracking the current operation.
+ An object that represents the context for the current operation.
A object with the specified operation context.
@@ -22549,7 +22913,8 @@
- A type which allows callers direct access to the property map of the entity. This class eliminates the use of reflection for serialization and deserialization.
+ A type which allows callers direct access to the property map of the entity.
+ This class eliminates the use of reflection for serialization and deserialization.
@@ -22571,14 +22936,14 @@
Populates the entity's properties from the data values in the dictionary.
The dictionary of string property names to data values to deserialize and store in this table entity instance.
- An object used to track the execution of the operation.
+ An object that represents the context for the current operation.
- Serializes the of property names mapped to data values from the entity instance.
+ Serializes the of property names mapped to data values from the entity instance.
- An object used to track the execution of the operation.
- A dictionary of property names to data typed values created by serializing this table entity instance.
+ An object that represents the context for the current operation.
+ An object of property names to data typed values created by serializing this table entity instance.
@@ -22615,78 +22980,79 @@
Initializes a new instance of the class with the specified partition key and row key.
- The partition key value for the entity.
- The row key value for the entity.
+ A string containing the partition key value for the entity.
+ A string containing the row key value for the entity.
Initializes a new instance of the class with the entity's partition key, row key, ETag (if available/required), and properties.
- The entity's partition key.
- The entity's row key.
- The entity's current ETag.
- The entity's properties, indexed by property name.
+ A string containing the partition key value for the entity.
+ A string containing the row key value for the entity.
+ A string containing the ETag for the entity.
+ An object containing the entity's properties, indexed by property name.
Initializes a new instance of the class with the entity's partition key, row key, timestamp, ETag (if available/required), and properties.
- The entity's partition key.
- The entity's row key.
- The timestamp for this entity as returned by Windows Azure.
- The entity's current ETag; set to null to ignore the ETag during subsequent update operations.
- An containing a map of property names to data typed values to store in the new .
+ A string containing the partition key value for the entity.
+ A string containing the row key value for the entity.
+ A value containing the timestamp for this entity.
+ A string containing the ETag for the entity.
+ An object containing the entity's properties, indexed by property name.
- Deserializes this instance using the specified of property names to values of type .
+ Deserializes this instance using the specified of property names to values of type .
- A collection containing the of string property names mapped to values of type to store in this instance.
- An object used to track the execution of the operation.
+ A collection containing the of string property names mapped to values of type to store in this instance.
+ An object that represents the context for the current operation.
- Serializes the of property names mapped to values of type from this instance.
+ Serializes the of property names mapped to values of type from this instance.
- An object used to track the execution of the operation.
- A collection containing the map of string property names to values of type stored in this instance.
+ An object that represents the context for the current operation.
+ An object containing the map of string property names to values of type stored in this instance.
Gets or sets the properties in the table entity, indexed by property name.
- The entity properties.
+ An object containing the entity's properties.
Gets or sets the entity's partition key.
- The entity partition key.
+ A string containing the partition key value for the entity.
Gets or sets the entity's row key.
- The entity row key.
+ A string containing the row key value for the entity.
Gets or sets the entity's timestamp.
- The entity timestamp.
+ A containing the timestamp for the entity.
- Gets or sets the entity's current ETag. Set this value to '*' to blindly overwrite an entity as part of an update operation.
+ Gets or sets the entity's current ETag.
- The entity ETag.
+ A string containing the ETag for the entity.
+ Set this value to '*' to blindly overwrite an entity as part of an update operation.
Gets or sets the entity's property, given the name of the property.
- The name of the property.
- The property.
+ A string containing the name of the property.
+ An object.
@@ -22741,59 +23107,59 @@
- Creates a new object that represents the specified offset value.
+ Creates a new object that represents the specified value.
The value for the new .
- A new of the offset type.
+ An object with the specified value.
Creates a new object that represents the specified byte array.
The value for the new .
- A new of the byte array.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
Creates a new object that represents the specified value.
The value for the new .
- A new of the type.
+ An object with the specified value.
@@ -22889,10 +23255,10 @@
- Creates an from the object.
+ Creates an from the specified object.
- The value of the object.
- The reference to the object created.
+ An object containing the value for the entity property.
+ An object.
@@ -22914,68 +23280,68 @@
Gets or sets the byte array value of this object.
- An exception will be thrown if you attempt to set this property to anything other than an byte array.
The byte array value of this object.
+ An exception is thrown if this property is set to a value other than a byte array.
- Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than an Object.
+ Gets or sets the boolean value of this object.
- The value of this object.
+ The boolean value of this object.
+ An exception is thrown if this property is set to a value other than a boolean value.
- Gets or sets the offset value of this object.
- An exception will be thrown if you attempt to set this property to anything other than a object.
+ Gets or sets the value of this object.
- The offset value of this object.
+ The value of this object.
+ An exception is thrown if this property is set to a value other than a value.
- Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than a object.
+ Gets or sets the double value of this object.
- The value of this object.
+ The double value of this object.
+ An exception is thrown if this property is set to a value other than a double value.
Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than a object.
The value of this object.
+ An exception is thrown if this property is set to a value other than a value.
Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than an Object.
The value of this object.
+ An exception is thrown if this property is set to a value other than a value.
Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than an Object.
The value of this object.
+ An exception is thrown if this property is set to a value other than an value.
- Gets or sets the value of this object.
- An exception will be thrown if you attempt to set this property to anything other than a object.
+ Gets or sets the string value of this object.
- The value of this object.
+ The string value of this object.
+ An exception is thrown if this property is set to a value other than a string value.
Returns a delegate for resolving entities.
The type into which the query results are projected.
- The partition key.
- The row key.
- The timestamp.
- A dictionary of properties.
+ A string containing the partition key for the entity.
+ A string containing the row key for the entity.
+ A containing the timestamp for the entity.
+ An object containing the properties for the entity.
The ETag.
@@ -23168,7 +23534,7 @@
Converts the permissions specified for the shared access policy to a string.
- The shared access permissions.
+ A object.
The shared access permissions in string format.
@@ -23176,25 +23542,25 @@
Constructs a object from a permissions string.
The shared access permissions in string format.
- A set of shared access permissions.
+ A object.
Gets or sets the start time for a shared access signature associated with this shared access policy.
- The shared access start time.
+ A specifying the shared access start time.
Gets or sets the expiry time for a shared access signature associated with this shared access policy.
- The shared access expiry time.
+ A specifying the shared access expiry time.
Gets or sets the permissions for a shared access signature associated with this shared access policy.
- The permissions.
+ A object.
@@ -23239,25 +23605,25 @@
Gets or sets the next partition key for enumeration operations.
- The next partition key.
+ A string containing the next partition key.
Gets or sets the next row key for enumeration operations.
- The next row key.
+ A string containing the next row key.
Gets or sets the next table name for enumeration operations.
- The name of the next table.
+ A string containing the name of the next table.
Gets or sets the storage location that the continuation token applies to.
- The storage location that the continuation token applies to.
+ A enumeration value.
@@ -23275,45 +23641,45 @@
Initializes a new instance of the class with the specified partition key and row key.
- The partition key of the to be initialized.
- The row key of the to be initialized.
+ A string containing the partition key of the to be initialized.
+ A string containing the row key of the to be initialized.
- Deserializes this instance using the specified of property names to data typed values.
+ Deserializes this instance using the specified of property names to data typed values.
- The map of string property names to data values to deserialize and store in this table entity instance.
- An object used to track the execution of the operation.
+ An object that maps string property names to data values to deserialize and store in this table entity instance.
+ An object that represents the context for the current operation.
- Deserializes a custom entity instance using the specified of property names to data typed values.
+ Deserializes a custom entity instance using the specified of property names to data typed values.
- Custom entity instance being deserialized.
- The map of string property names to data values to deserialize and store in this entity instance.
- An object used to track the execution of the operation.
+ The custom entity instance being deserialized.
+ An object that maps string property names to data values to deserialize and store in this table entity instance.
+ An object that represents the context for the current operation.
- Serializes the of property names mapped to data values from this instance.
+ Serializes the of property names mapped to data values from this instance.
- An object used to track the execution of the operation.
- A map of property names to data typed values created by serializing this table entity instance.
+ An object that represents the context for the current operation.
+ An object that maps string property names to typed values created by serializing this table entity instance.
- Create a of objects for all the properties of the specified entity object.
+ Create a of objects for all the properties of the specified entity object.
The entity object to serialize.
- An object used to track the execution of the operation.
- A of objects for all the properties of the specified entity object.
+ An object that represents the context for the current operation.
+ An of objects for all the properties of the specified entity object.
Determines if the given property should be skipped based on its name, if it exposes a public getter and setter, and if the IgnoreAttribute is not defined.
The PropertyInfo of the property to check
- An object used to track the execution of the operation.
+ An object that represents the context for the current operation.
True if the property should be skipped, false otherwise.
@@ -23353,25 +23719,25 @@
Gets or sets the entity's partition key.
- The partition key of the entity.
+ A string containing the partition key for the entity.
Gets or sets the entity's row key.
- The row key of the entity.
+ A string containing the row key for the entity.
Gets or sets the entity's timestamp.
- The timestamp of the entity.
+ A containing the timestamp of the entity.
Gets or sets the entity's current ETag. Set this value to '*' in order to blindly overwrite an entity as part of an update operation.
- The ETag of the entity.
+ A string containing the ETag for the entity.
@@ -23391,10 +23757,12 @@
Gets or sets the status of the property resolver cache for the .
-
- The property resolver cache caches known entity types and their respective property resolver dictionaries when entities are deserialized and the payload does not include JSON metadata. For most scenarios, disabling the property resolver cache is not recommended due to its effect on performance.
-
+
+ The property resolver cache caches known entity types and their respective property resolver dictionaries when entities are deserialized
+ and the payload does not include JSON metadata. For most scenarios, disabling the property resolver cache is not recommended due to its
+ effect on performance.
+
@@ -23496,7 +23864,7 @@
Gets the set of shared access policies for the container.
- The set of shared access policies for the container.
+ A object.
@@ -23531,7 +23899,7 @@
Gets a continuation token to use to retrieve the next set of results with a subsequent call to the operation.
- The continuation token.
+ A object.
@@ -23547,7 +23915,7 @@
Initializes a new instance of the class with the specified .
- The request options used to initialize this instance of the class.
+ The object used to initialize a new instance of the class.
@@ -23558,19 +23926,19 @@
Gets or sets the retry policy for the request.
- The retry policy delegate.
+ An object of type .
Gets or sets the location mode of the request.
- The location mode of the request.
+ A object indicating the location mode of the request.
- Gets or sets the server timeout for the request.
+ Gets or sets the server timeout interval for the request.
- The client and server timeout interval for the request.
+ A containing the server timeout interval for the request.
@@ -23582,7 +23950,7 @@
Gets or sets the that will be used for the request.
- The TablePayloadFormat to use.
+ A enumeration value.
@@ -23593,7 +23961,7 @@
Represents the result of a table operation.
- The class encapsulates the HTTP response and any table entity results returned by the Storage Service REST API operation called for a particular .
+ The class encapsulates the HTTP response and any entities returned for a particular .
@@ -23626,7 +23994,7 @@
- Stores the continuation token used to retrieve the next segment of results or null if there are no more results.
+ Stores the continuation token used to retrieve the next segment of results or null if there are no more results.
@@ -23639,17 +24007,17 @@
Gets an enumerable collection of results.
- An enumerable collection of results.
+ An enumerable collection of objects.
Gets the continuation token used to retrieve the next segment of results. Returns null if there are no more results.
- The continuation token.
+ A object.
- Internal table service entity for creating tables.
+ Internal Table service entity for creating tables.
@@ -23739,22 +24107,22 @@
- Stores the maximum results the table service can return.
+ Stores the maximum results the Table service can return.
- The maximum size of a string property for the table service in bytes.
+ The maximum size of a string property for the Table service in bytes.
- The maximum size of a string property for the table service in bytes.
+ The maximum size of a string property for the Table service in bytes.
- The maximum size of a string property for the table service in chars.
+ The maximum size of a string property for the Table service in chars.
@@ -24554,6 +24922,11 @@
Default name for Tables.
+
+
+ Header value to set Accept to XML.
+
+
Header value to set Accept to AtomPub.
@@ -24917,7 +25290,8 @@
- Header that specifies the copy last modified time.
+ Header that specifies the conclusion time of the last attempted blob copy operation
+ where this blob was the destination blob.
@@ -25165,6 +25539,21 @@
Specifies the table continuation token type.
+
+
+ Constants for version strings
+
+
+
+
+ Constant for the 2013-08-15 version.
+
+
+
+
+ Constant for the 2012-02-12 version.
+
+
HTTP methods that are supported by CORS.
@@ -25597,7 +25986,7 @@
Generates XML representing the given retention policy.
- The number of days to retain, or null if the policy is disabled.
+ The number of days to retain, or null if the policy is disabled.
An XML retention policy element.
@@ -25648,7 +26037,7 @@
Constructs a retention policy (number of days) from an XML element.
The XML element.
- The number of days to retain, or null if retention is disabled.
+ The number of days to retain, or null if retention is disabled.
diff --git a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Azure SDK for Media Services Notice.docx b/lib/windowsazure/Windows Azure SDK for Media Services Notice.docx
similarity index 100%
rename from src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Azure SDK for Media Services Notice.docx
rename to lib/windowsazure/Windows Azure SDK for Media Services Notice.docx
diff --git a/src/Orchard.Azure/Orchard.Azure.Web/Web.config b/src/Orchard.Azure/Orchard.Azure.Web/Web.config
index c4ac2ded9..74867bdff 100644
--- a/src/Orchard.Azure/Orchard.Azure.Web/Web.config
+++ b/src/Orchard.Azure/Orchard.Azure.Web/Web.config
@@ -1,185 +1,197 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Microsoft.WindowsAzure.MediaServices.Client.dll b/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Microsoft.WindowsAzure.MediaServices.Client.dll
deleted file mode 100644
index e2b98a0a3..000000000
Binary files a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Lib/Microsoft.WindowsAzure.MediaServices.Client.dll and /dev/null differ
diff --git a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Orchard.Azure.MediaServices.csproj b/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Orchard.Azure.MediaServices.csproj
index fe5ceb21f..34a644a7a 100644
--- a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Orchard.Azure.MediaServices.csproj
+++ b/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Orchard.Azure.MediaServices.csproj
@@ -68,9 +68,8 @@
False
..\..\..\..\lib\windowsazure\Microsoft.Data.Services.Client.dll
-
- False
- Lib\Microsoft.Practices.TransientFaultHandling.Core.dll
+
+ ..\..\..\..\lib\windowsazure\Microsoft.Practices.TransientFaultHandling.Core.dll
False
@@ -80,9 +79,8 @@
False
..\..\..\..\lib\windowsazure\Microsoft.WindowsAzure.Diagnostics.dll
-
- False
- Lib\Microsoft.WindowsAzure.MediaServices.Client.dll
+
+ ..\..\..\..\lib\windowsazure\Microsoft.WindowsAzure.MediaServices.Client.dll
False
@@ -156,8 +154,6 @@
-
-
Designer
@@ -547,9 +543,6 @@
-
-
-
diff --git a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Web.config b/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Web.config
index 6684dcd12..391cf550e 100644
--- a/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Web.config
+++ b/src/Orchard.Web/Modules/Orchard.Azure.MediaServices/Web.config
@@ -44,25 +44,9 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
diff --git a/src/Orchard.Web/Web.config b/src/Orchard.Web/Web.config
index af321869d..1e8d9bc74 100644
--- a/src/Orchard.Web/Web.config
+++ b/src/Orchard.Web/Web.config
@@ -1,177 +1,181 @@
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file