xml/Microsoft.Azure.Storage.Queue/CloudQueue.xml (5,225 lines of code) (raw):
<Type Name="CloudQueue" FullName="Microsoft.Azure.Storage.Queue.CloudQueue">
<TypeSignature Language="C#" Value="public class CloudQueue" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit CloudQueue extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.Azure.Storage.Queue.CloudQueue" />
<TypeSignature Language="VB.NET" Value="Public Class CloudQueue" />
<TypeSignature Language="F#" Value="type CloudQueue = class" />
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.1.0.0</AssemblyVersion>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
This class represents a queue in the Microsoft Azure Queue service.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CloudQueue (Uri queueAddress);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri queueAddress) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.#ctor(System.Uri)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (queueAddress As Uri)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Storage.Queue.CloudQueue : Uri -> Microsoft.Azure.Storage.Queue.CloudQueue" Usage="new Microsoft.Azure.Storage.Queue.CloudQueue queueAddress" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="queueAddress" Type="System.Uri" />
</Parameters>
<Docs>
<param name="queueAddress">A <see cref="T:System.Uri" /> specifying the absolute URI to the queue.</param>
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueue" /> class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CloudQueue (Microsoft.Azure.Storage.StorageUri queueAddress, Microsoft.Azure.Storage.Auth.StorageCredentials credentials);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Microsoft.Azure.Storage.StorageUri queueAddress, class Microsoft.Azure.Storage.Auth.StorageCredentials credentials) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.#ctor(Microsoft.Azure.Storage.StorageUri,Microsoft.Azure.Storage.Auth.StorageCredentials)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (queueAddress As StorageUri, credentials As StorageCredentials)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Storage.Queue.CloudQueue : Microsoft.Azure.Storage.StorageUri * Microsoft.Azure.Storage.Auth.StorageCredentials -> Microsoft.Azure.Storage.Queue.CloudQueue" Usage="new Microsoft.Azure.Storage.Queue.CloudQueue (queueAddress, credentials)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="queueAddress" Type="Microsoft.Azure.Storage.StorageUri" />
<Parameter Name="credentials" Type="Microsoft.Azure.Storage.Auth.StorageCredentials" />
</Parameters>
<Docs>
<param name="queueAddress">A <see cref="P:Microsoft.Azure.Storage.Queue.CloudQueue.StorageUri" /> containing the absolute URI to the queue at both the primary and secondary locations.</param>
<param name="credentials">A <see cref="T:Microsoft.Azure.Storage.Auth.StorageCredentials" /> object.</param>
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueue" /> class.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueue" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CloudQueue (Uri queueAddress, Microsoft.Azure.Storage.Auth.StorageCredentials credentials);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Uri queueAddress, class Microsoft.Azure.Storage.Auth.StorageCredentials credentials) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.#ctor(System.Uri,Microsoft.Azure.Storage.Auth.StorageCredentials)" />
<MemberSignature Language="VB.NET" Value="Public Sub New (queueAddress As Uri, credentials As StorageCredentials)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Storage.Queue.CloudQueue : Uri * Microsoft.Azure.Storage.Auth.StorageCredentials -> Microsoft.Azure.Storage.Queue.CloudQueue" Usage="new Microsoft.Azure.Storage.Queue.CloudQueue (queueAddress, credentials)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="queueAddress" Type="System.Uri" />
<Parameter Name="credentials" Type="Microsoft.Azure.Storage.Auth.StorageCredentials" />
</Parameters>
<Docs>
<param name="queueAddress">A <see cref="T:System.Uri" /> specifying the absolute URI to the queue.</param>
<param name="credentials">A <see cref="T:Microsoft.Azure.Storage.Auth.StorageCredentials" /> object.</param>
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueue" /> class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AddMessage">
<MemberSignature Language="C#" Value="public virtual void AddMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan? timeToLive = default, TimeSpan? initialVisibilityDelay = default, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Nullable`1<valuetype System.TimeSpan> timeToLive, valuetype System.Nullable`1<valuetype System.TimeSpan> initialVisibilityDelay, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.AddMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub AddMessage (message As CloudQueueMessage, Optional timeToLive As Nullable(Of TimeSpan) = Nothing, Optional initialVisibilityDelay As Nullable(Of TimeSpan) = Nothing, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member AddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.AddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.AddMessage (message, timeToLive, initialVisibilityDelay, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="timeToLive" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="initialVisibilityDelay" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="timeToLive">A <see cref="T:System.TimeSpan" /> specifying the maximum time to allow the message to be in the queue, or <c>null</c>.</param>
<param name="initialVisibilityDelay">A <see cref="T:System.TimeSpan" /> specifying the interval of time from now during which the message will be invisible.
If <c>null</c> then the message will be visible immediately.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Adds a message to the queue.
</summary>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="AddMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task AddMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task AddMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.AddMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddMessageAsync (message As CloudQueueMessage) As Task" />
<MemberSignature Language="F#" Value="abstract member AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage -> System.Threading.Tasks.Task
override this.AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage -> System.Threading.Tasks.Task" Usage="cloudQueue.AddMessageAsync message" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<summary>
Initiates an asynchronous operation to add a message to the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="AddMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task AddMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task AddMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.AddMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddMessageAsync (message As CloudQueueMessage, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.AddMessageAsync (message, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to add a message to the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="AddMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task AddMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan? timeToLive, TimeSpan? initialVisibilityDelay, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task AddMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Nullable`1<valuetype System.TimeSpan> timeToLive, valuetype System.Nullable`1<valuetype System.TimeSpan> initialVisibilityDelay, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.AddMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddMessageAsync (message As CloudQueueMessage, timeToLive As Nullable(Of TimeSpan), initialVisibilityDelay As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.AddMessageAsync (message, timeToLive, initialVisibilityDelay, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="timeToLive" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="initialVisibilityDelay" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="timeToLive">A <see cref="T:System.TimeSpan" /> specifying the maximum time to allow the message to be in the queue, or <c>null</c>.</param>
<param name="initialVisibilityDelay">A <see cref="T:System.TimeSpan" /> specifying the interval of time from now during which the message will be invisible.
If <c>null</c> then the message will be visible immediately.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to add a message to the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="AddMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task AddMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan? timeToLive, TimeSpan? initialVisibilityDelay, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task AddMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Nullable`1<valuetype System.TimeSpan> timeToLive, valuetype System.Nullable`1<valuetype System.TimeSpan> initialVisibilityDelay, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.AddMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function AddMessageAsync (message As CloudQueueMessage, timeToLive As Nullable(Of TimeSpan), initialVisibilityDelay As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.AddMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.AddMessageAsync (message, timeToLive, initialVisibilityDelay, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="timeToLive" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="initialVisibilityDelay" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="timeToLive">A <see cref="T:System.TimeSpan" /> specifying the maximum time to allow the message to be in the queue, or <c>null</c>.</param>
<param name="initialVisibilityDelay">A <see cref="T:System.TimeSpan" /> specifying the interval of time from now during which the message will be invisible.
If <c>null</c> then the message will be visible immediately.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to add a message to the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="ApproximateMessageCount">
<MemberSignature Language="C#" Value="public int? ApproximateMessageCount { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<int32> ApproximateMessageCount" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.ApproximateMessageCount" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ApproximateMessageCount As Nullable(Of Integer)" />
<MemberSignature Language="F#" Value="member this.ApproximateMessageCount : Nullable<int>" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.ApproximateMessageCount" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Int32></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the approximate message count for the queue.
</summary>
<value>The approximate message count.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginAddMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginAddMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginAddMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginAddMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginAddMessage (message As CloudQueueMessage, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginAddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginAddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginAddMessage (message, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to add a message to the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginAddMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginAddMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan? timeToLive, TimeSpan? initialVisibilityDelay, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginAddMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Nullable`1<valuetype System.TimeSpan> timeToLive, valuetype System.Nullable`1<valuetype System.TimeSpan> initialVisibilityDelay, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginAddMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Nullable{System.TimeSpan},System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginAddMessage (message As CloudQueueMessage, timeToLive As Nullable(Of TimeSpan), initialVisibilityDelay As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginAddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginAddMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Nullable<TimeSpan> * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginAddMessage (message, timeToLive, initialVisibilityDelay, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="timeToLive" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="initialVisibilityDelay" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="timeToLive">A <see cref="T:System.TimeSpan" /> specifying the maximum time to allow the message to be in the queue, or <c>null</c>.</param>
<param name="initialVisibilityDelay">A <see cref="T:System.TimeSpan" /> specifying the interval of time from now during which the message will be invisible.
If <c>null</c> then the message will be visible immediately.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to add a message to the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginClear">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginClear (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginClear(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginClear(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginClear (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginClear : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginClear : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginClear (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to clear all messages from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginClear">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginClear (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginClear(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginClear(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginClear (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginClear : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginClear : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginClear (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to clear all messages from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginCreate">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreate (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreate(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginCreate(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginCreate (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginCreate : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginCreate : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginCreate (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to create a queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginCreate">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreate (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreate(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginCreate(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginCreate (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginCreate : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginCreate : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginCreate (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to create a queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginCreateIfNotExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreateIfNotExists (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreateIfNotExists(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginCreateIfNotExists(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginCreateIfNotExists (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginCreateIfNotExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginCreateIfNotExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginCreateIfNotExists (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="BeginCreateIfNotExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreateIfNotExists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginCreateIfNotExists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginCreateIfNotExists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginCreateIfNotExists (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginCreateIfNotExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginCreateIfNotExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginCreateIfNotExists (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDelete">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDelete (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDelete(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDelete(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDelete (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDelete : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDelete : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDelete (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDelete">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDelete (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDelete(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDelete(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDelete (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDelete : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDelete : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDelete (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteIfExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteIfExists (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteIfExists(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteIfExists(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteIfExists (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteIfExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteIfExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteIfExists (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteIfExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteIfExists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteIfExists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteIfExists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteIfExists (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteIfExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteIfExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteIfExists (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteMessage (message As CloudQueueMessage, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteMessage (message, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage (string messageId, string popReceipt, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage(string messageId, string popReceipt, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteMessage(System.String,System.String,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteMessage (messageId As String, popReceipt As String, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteMessage : string * string * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteMessage : string * string * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteMessage (messageId, popReceipt, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteMessage (message As CloudQueueMessage, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteMessage (message, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginDeleteMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage (string messageId, string popReceipt, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginDeleteMessage(string messageId, string popReceipt, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginDeleteMessage(System.String,System.String,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginDeleteMessage (messageId As String, popReceipt As String, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginDeleteMessage : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginDeleteMessage : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginDeleteMessage (messageId, popReceipt, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to delete a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginExists (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginExists(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginExists(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginExists (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginExists : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginExists (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to check the existence of the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginExists">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginExists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginExists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginExists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginExists (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginExists (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to check the existence of the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginFetchAttributes">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginFetchAttributes (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginFetchAttributes(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginFetchAttributes(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginFetchAttributes (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginFetchAttributes : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginFetchAttributes : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginFetchAttributes (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginFetchAttributes">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginFetchAttributes (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginFetchAttributes(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginFetchAttributes(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginFetchAttributes (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginFetchAttributes : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginFetchAttributes : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginFetchAttributes (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessage (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessage(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetMessage(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetMessage (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetMessage : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetMessage : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetMessage (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to get a single message from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessage (TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessage(valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetMessage(System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetMessage (visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetMessage : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetMessage : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetMessage (visibilityTimeout, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
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.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetMessages">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessages (int messageCount, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessages(int32 messageCount, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetMessages(System.Int32,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetMessages (messageCount As Integer, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetMessages : int * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetMessages : int * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetMessages (messageCount, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to get messages from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetMessages">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessages (int messageCount, TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetMessages(int32 messageCount, valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetMessages(System.Int32,System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetMessages (messageCount As Integer, visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetMessages : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetMessages : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetMessages (messageCount, visibilityTimeout, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins 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.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPermissions (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPermissions(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetPermissions(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetPermissions (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetPermissions : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetPermissions : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetPermissions (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginGetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPermissions (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginGetPermissions(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginGetPermissions(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginGetPermissions (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginGetPermissions : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginGetPermissions : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginGetPermissions (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginPeekMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessage (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessage(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginPeekMessage(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginPeekMessage (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginPeekMessage : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginPeekMessage : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginPeekMessage (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to get a single message from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginPeekMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessage (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessage(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginPeekMessage(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginPeekMessage (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginPeekMessage : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginPeekMessage : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginPeekMessage (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to peek a single message from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginPeekMessages">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessages (int messageCount, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessages(int32 messageCount, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginPeekMessages(System.Int32,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginPeekMessages (messageCount As Integer, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginPeekMessages : int * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginPeekMessages : int * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginPeekMessages (messageCount, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to peek messages from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginPeekMessages">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessages (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginPeekMessages(int32 messageCount, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginPeekMessages(System.Int32,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginPeekMessages (messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginPeekMessages : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginPeekMessages : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginPeekMessages (messageCount, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to peek messages from the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginSetMetadata">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetMetadata (AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetMetadata(class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginSetMetadata(System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginSetMetadata (callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginSetMetadata : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginSetMetadata : AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginSetMetadata (callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginSetMetadata">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetMetadata (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetMetadata(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginSetMetadata(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginSetMetadata (options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginSetMetadata : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginSetMetadata : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginSetMetadata (options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginSetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetPermissions (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetPermissions(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginSetPermissions(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginSetPermissions (permissions As QueuePermissions, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginSetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginSetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginSetPermissions (permissions, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to set permissions for the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginSetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetPermissions (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginSetPermissions(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginSetPermissions(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginSetPermissions (permissions As QueuePermissions, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginSetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginSetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginSetPermissions (permissions, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to set permissions for the queue.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginUpdateMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginUpdateMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginUpdateMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginUpdateMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginUpdateMessage (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginUpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginUpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginUpdateMessage (message, visibilityTimeout, updateFields, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="BeginUpdateMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginUpdateMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.ICancellableAsyncResult BeginUpdateMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, class System.AsyncCallback callback, object state) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.BeginUpdateMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.AsyncCallback,System.Object)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function BeginUpdateMessage (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, options As QueueRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult" />
<MemberSignature Language="F#" Value="abstract member BeginUpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginUpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult" Usage="cloudQueue.BeginUpdateMessage (message, visibilityTimeout, updateFields, options, operationContext, callback, state)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.ICancellableAsyncResult</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="callback" Type="System.AsyncCallback" />
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that will receive notification when the asynchronous operation completes.</param>
<param name="state">A user-defined object that will be passed to the callback delegate.</param>
<summary>
Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>An <see cref="T:Microsoft.Azure.Storage.ICancellableAsyncResult" /> that references the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Clear">
<MemberSignature Language="C#" Value="public virtual void Clear (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Clear(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.Clear(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub Clear (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member Clear : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.Clear : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.Clear (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Clears all messages from the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ClearAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task ClearAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task ClearAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ClearAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ClearAsync () As Task" />
<MemberSignature Language="F#" Value="abstract member ClearAsync : unit -> System.Threading.Tasks.Task
override this.ClearAsync : unit -> System.Threading.Tasks.Task" Usage="cloudQueue.ClearAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to clear all messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ClearAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task ClearAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task ClearAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ClearAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ClearAsync (cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member ClearAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ClearAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.ClearAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to clear all messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ClearAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task ClearAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task ClearAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ClearAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ClearAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member ClearAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.ClearAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.ClearAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to clear all messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ClearAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task ClearAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task ClearAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ClearAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ClearAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member ClearAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ClearAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.ClearAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to clear all messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public virtual void Create (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Create(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.Create(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub Create (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member Create : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.Create : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.Create (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Creates the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task CreateAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task CreateAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateAsync () As Task" />
<MemberSignature Language="F#" Value="abstract member CreateAsync : unit -> System.Threading.Tasks.Task
override this.CreateAsync : unit -> System.Threading.Tasks.Task" Usage="cloudQueue.CreateAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to create a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task CreateAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task CreateAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateAsync (cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member CreateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.CreateAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to create a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task CreateAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member CreateAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.CreateAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to create a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task CreateAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task CreateAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member CreateAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.CreateAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.CreateAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to create a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateIfNotExists">
<MemberSignature Language="C#" Value="public virtual bool CreateIfNotExists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool CreateIfNotExists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateIfNotExists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateIfNotExists (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As Boolean" />
<MemberSignature Language="F#" Value="abstract member CreateIfNotExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool
override this.CreateIfNotExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool" Usage="cloudQueue.CreateIfNotExists (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Creates the queue if it does not already exist.
</summary>
<returns>
<c>true</c> if the queue did not already exist and was created; otherwise <c>false</c>.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="CreateIfNotExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> CreateIfNotExistsAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> CreateIfNotExistsAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateIfNotExistsAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateIfNotExistsAsync () As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member CreateIfNotExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.CreateIfNotExistsAsync : unit -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.CreateIfNotExistsAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="CreateIfNotExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> CreateIfNotExistsAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> CreateIfNotExistsAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateIfNotExistsAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateIfNotExistsAsync (cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member CreateIfNotExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.CreateIfNotExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.CreateIfNotExistsAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="CreateIfNotExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> CreateIfNotExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> CreateIfNotExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateIfNotExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateIfNotExistsAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member CreateIfNotExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>
override this.CreateIfNotExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.CreateIfNotExistsAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="CreateIfNotExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> CreateIfNotExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> CreateIfNotExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.CreateIfNotExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function CreateIfNotExistsAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member CreateIfNotExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.CreateIfNotExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.CreateIfNotExistsAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>This API requires Create or Write permissions.</remarks>
</Docs>
</Member>
<Member MemberName="Delete">
<MemberSignature Language="C#" Value="public virtual void Delete (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Delete(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.Delete(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub Delete (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member Delete : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.Delete : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.Delete (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Deletes the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteAsync () As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteAsync : unit -> System.Threading.Tasks.Task
override this.DeleteAsync : unit -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to delete a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteAsync (cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.DeleteAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to delete a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteIfExists">
<MemberSignature Language="C#" Value="public virtual bool DeleteIfExists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool DeleteIfExists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteIfExists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteIfExists (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As Boolean" />
<MemberSignature Language="F#" Value="abstract member DeleteIfExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool
override this.DeleteIfExists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool" Usage="cloudQueue.DeleteIfExists (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Deletes the queue if it already exists.
</summary>
<returns>
<c>true</c> if the queue did not already exist and was created; otherwise <c>false</c>.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteIfExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> DeleteIfExistsAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteIfExistsAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteIfExistsAsync () As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member DeleteIfExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : unit -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.DeleteIfExistsAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteIfExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> DeleteIfExistsAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteIfExistsAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteIfExistsAsync (cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member DeleteIfExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.DeleteIfExistsAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteIfExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> DeleteIfExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteIfExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteIfExistsAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member DeleteIfExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.DeleteIfExistsAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteIfExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> DeleteIfExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> DeleteIfExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteIfExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteIfExistsAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member DeleteIfExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.DeleteIfExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.DeleteIfExistsAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessage">
<MemberSignature Language="C#" Value="public virtual void DeleteMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DeleteMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub DeleteMessage (message As CloudQueueMessage, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member DeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.DeleteMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.DeleteMessage (message, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Deletes a message.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessage">
<MemberSignature Language="C#" Value="public virtual void DeleteMessage (string messageId, string popReceipt, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void DeleteMessage(string messageId, string popReceipt, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessage(System.String,System.String,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub DeleteMessage (messageId As String, popReceipt As String, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member DeleteMessage : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.DeleteMessage : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.DeleteMessage (messageId, popReceipt, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Deletes the specified message from the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (message As CloudQueueMessage) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync message" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (message As CloudQueueMessage, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (message, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (string messageId, string popReceipt);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(string messageId, string popReceipt) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(System.String,System.String)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (messageId As String, popReceipt As String) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : string * string -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : string * string -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (messageId, popReceipt)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (message As CloudQueueMessage, options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (message, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (string messageId, string popReceipt, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(string messageId, string popReceipt, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(System.String,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (messageId As String, popReceipt As String, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (messageId, popReceipt, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (message As CloudQueueMessage, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (message, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (string messageId, string popReceipt, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(string messageId, string popReceipt, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(System.String,System.String,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (messageId As String, popReceipt As String, options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (messageId, popReceipt, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task DeleteMessageAsync (string messageId, string popReceipt, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task DeleteMessageAsync(string messageId, string popReceipt, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.DeleteMessageAsync(System.String,System.String,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function DeleteMessageAsync (messageId As String, popReceipt As String, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member DeleteMessageAsync : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteMessageAsync : string * string * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.DeleteMessageAsync (messageId, popReceipt, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageId" Type="System.String" />
<Parameter Name="popReceipt" Type="System.String" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageId">A string specifying the message ID.</param>
<param name="popReceipt">A string specifying the pop receipt value.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to delete a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EncodeMessage">
<MemberSignature Language="C#" Value="public bool EncodeMessage { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool EncodeMessage" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.EncodeMessage" />
<MemberSignature Language="VB.NET" Value="Public Property EncodeMessage As Boolean" />
<MemberSignature Language="F#" Value="member this.EncodeMessage : bool with get, set" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.EncodeMessage" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a value indicating whether to apply base64 encoding when adding or retrieving messages.
</summary>
<value>
<c>true</c> to encode messages; otherwise, <c>false</c>. The default value is <c>true</c>.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndAddMessage">
<MemberSignature Language="C#" Value="public virtual void EndAddMessage (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndAddMessage(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndAddMessage(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndAddMessage (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndAddMessage : IAsyncResult -> unit
override this.EndAddMessage : IAsyncResult -> unit" Usage="cloudQueue.EndAddMessage asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to add a message to the queue.
</summary>
<remarks>The <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> message passed in will be populated with the pop receipt, message ID, and the insertion/expiration time.</remarks>
</Docs>
</Member>
<Member MemberName="EndClear">
<MemberSignature Language="C#" Value="public virtual void EndClear (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndClear(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndClear(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndClear (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndClear : IAsyncResult -> unit
override this.EndClear : IAsyncResult -> unit" Usage="cloudQueue.EndClear asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to clear all messages from the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndCreate">
<MemberSignature Language="C#" Value="public virtual void EndCreate (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndCreate(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndCreate(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndCreate (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndCreate : IAsyncResult -> unit
override this.EndCreate : IAsyncResult -> unit" Usage="cloudQueue.EndCreate asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to create a queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndCreateIfNotExists">
<MemberSignature Language="C#" Value="public virtual bool EndCreateIfNotExists (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool EndCreateIfNotExists(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndCreateIfNotExists(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndCreateIfNotExists (asyncResult As IAsyncResult) As Boolean" />
<MemberSignature Language="F#" Value="abstract member EndCreateIfNotExists : IAsyncResult -> bool
override this.EndCreateIfNotExists : IAsyncResult -> bool" Usage="cloudQueue.EndCreateIfNotExists asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Returns the result of an asynchronous operation to create the queue if it does not already exist.
</summary>
<returns>
<c>true</c> if the queue did not already exist and was created; otherwise, <c>false</c>.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndDelete">
<MemberSignature Language="C#" Value="public virtual void EndDelete (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndDelete(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndDelete(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndDelete (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndDelete : IAsyncResult -> unit
override this.EndDelete : IAsyncResult -> unit" Usage="cloudQueue.EndDelete asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to delete a queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndDeleteIfExists">
<MemberSignature Language="C#" Value="public virtual bool EndDeleteIfExists (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool EndDeleteIfExists(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndDeleteIfExists(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndDeleteIfExists (asyncResult As IAsyncResult) As Boolean" />
<MemberSignature Language="F#" Value="abstract member EndDeleteIfExists : IAsyncResult -> bool
override this.EndDeleteIfExists : IAsyncResult -> bool" Usage="cloudQueue.EndDeleteIfExists asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Returns the result of an asynchronous operation to delete the queue if it already exists.
</summary>
<returns>
<c>true</c> if the queue did not already exist and was created; otherwise, <c>false</c>.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndDeleteMessage">
<MemberSignature Language="C#" Value="public virtual void EndDeleteMessage (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndDeleteMessage(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndDeleteMessage(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndDeleteMessage (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndDeleteMessage : IAsyncResult -> unit
override this.EndDeleteMessage : IAsyncResult -> unit" Usage="cloudQueue.EndDeleteMessage asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to delete a message.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndExists">
<MemberSignature Language="C#" Value="public virtual bool EndExists (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool EndExists(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndExists(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndExists (asyncResult As IAsyncResult) As Boolean" />
<MemberSignature Language="F#" Value="abstract member EndExists : IAsyncResult -> bool
override this.EndExists : IAsyncResult -> bool" Usage="cloudQueue.EndExists asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Returns the asynchronous result of the request to check the existence of the queue.
</summary>
<returns>
<c>true</c> if the queue exists.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndFetchAttributes">
<MemberSignature Language="C#" Value="public virtual void EndFetchAttributes (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndFetchAttributes(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndFetchAttributes(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndFetchAttributes (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndFetchAttributes : IAsyncResult -> unit
override this.EndFetchAttributes : IAsyncResult -> unit" Usage="cloudQueue.EndFetchAttributes asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to fetch a queue's attributes.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndGetMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.CloudQueueMessage EndGetMessage (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.CloudQueueMessage EndGetMessage(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndGetMessage(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndGetMessage (asyncResult As IAsyncResult) As CloudQueueMessage" />
<MemberSignature Language="F#" Value="abstract member EndGetMessage : IAsyncResult -> Microsoft.Azure.Storage.Queue.CloudQueueMessage
override this.EndGetMessage : IAsyncResult -> Microsoft.Azure.Storage.Queue.CloudQueueMessage" Usage="cloudQueue.EndGetMessage asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.CloudQueueMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndGetMessages">
<MemberSignature Language="C#" Value="public virtual System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage> EndGetMessages (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> EndGetMessages(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndGetMessages(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndGetMessages (asyncResult As IAsyncResult) As IEnumerable(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member EndGetMessages : IAsyncResult -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.EndGetMessages : IAsyncResult -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.EndGetMessages asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to get messages from the queue.
</summary>
<returns>An enumerable collection of messages.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndGetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions EndGetPermissions (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions EndGetPermissions(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndGetPermissions(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndGetPermissions (asyncResult As IAsyncResult) As QueuePermissions" />
<MemberSignature Language="F#" Value="abstract member EndGetPermissions : IAsyncResult -> Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions
override this.EndGetPermissions : IAsyncResult -> Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" Usage="cloudQueue.EndGetPermissions asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Returns the asynchronous result of the request to get the permissions settings for the queue.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndPeekMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.CloudQueueMessage EndPeekMessage (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.CloudQueueMessage EndPeekMessage(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndPeekMessage(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndPeekMessage (asyncResult As IAsyncResult) As CloudQueueMessage" />
<MemberSignature Language="F#" Value="abstract member EndPeekMessage : IAsyncResult -> Microsoft.Azure.Storage.Queue.CloudQueueMessage
override this.EndPeekMessage : IAsyncResult -> Microsoft.Azure.Storage.Queue.CloudQueueMessage" Usage="cloudQueue.EndPeekMessage asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.CloudQueueMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to peek a single message from the queue.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndPeekMessages">
<MemberSignature Language="C#" Value="public virtual System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage> EndPeekMessages (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> EndPeekMessages(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndPeekMessages(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function EndPeekMessages (asyncResult As IAsyncResult) As IEnumerable(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member EndPeekMessages : IAsyncResult -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.EndPeekMessages : IAsyncResult -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.EndPeekMessages asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to peek messages from the queue.
</summary>
<returns>An enumerable collection of <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> objects.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndSetMetadata">
<MemberSignature Language="C#" Value="public virtual void EndSetMetadata (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndSetMetadata(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndSetMetadata(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndSetMetadata (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndSetMetadata : IAsyncResult -> unit
override this.EndSetMetadata : IAsyncResult -> unit" Usage="cloudQueue.EndSetMetadata asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to set user-defined metadata on the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndSetPermissions">
<MemberSignature Language="C#" Value="public virtual void EndSetPermissions (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndSetPermissions(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndSetPermissions(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndSetPermissions (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndSetPermissions : IAsyncResult -> unit
override this.EndSetPermissions : IAsyncResult -> unit" Usage="cloudQueue.EndSetPermissions asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Returns the result of an asynchronous operation to set permissions for the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EndUpdateMessage">
<MemberSignature Language="C#" Value="public virtual void EndUpdateMessage (IAsyncResult asyncResult);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void EndUpdateMessage(class System.IAsyncResult asyncResult) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.EndUpdateMessage(System.IAsyncResult)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub EndUpdateMessage (asyncResult As IAsyncResult)" />
<MemberSignature Language="F#" Value="abstract member EndUpdateMessage : IAsyncResult -> unit
override this.EndUpdateMessage : IAsyncResult -> unit" Usage="cloudQueue.EndUpdateMessage asyncResult" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="asyncResult" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending asynchronous operation.</param>
<summary>
Ends an asynchronous operation to add a message to the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Exists">
<MemberSignature Language="C#" Value="public virtual bool Exists (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool Exists(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.Exists(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function Exists (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As Boolean" />
<MemberSignature Language="F#" Value="abstract member Exists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool
override this.Exists : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> bool" Usage="cloudQueue.Exists (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Checks existence of the queue.
</summary>
<returns>
<c>true</c> if the queue exists.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> ExistsAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> ExistsAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ExistsAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ExistsAsync () As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member ExistsAsync : unit -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : unit -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.ExistsAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to check the existence of the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> ExistsAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> ExistsAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ExistsAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ExistsAsync (cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.ExistsAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to check the existence of the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> ExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ExistsAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member ExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.ExistsAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to check the existence of the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ExistsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<bool> ExistsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<bool> ExistsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.ExistsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function ExistsAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of Boolean)" />
<MemberSignature Language="F#" Value="abstract member ExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>
override this.ExistsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<bool>" Usage="cloudQueue.ExistsAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Boolean></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to check the existence of the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <c>bool</c> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FetchAttributes">
<MemberSignature Language="C#" Value="public virtual void FetchAttributes (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void FetchAttributes(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.FetchAttributes(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub FetchAttributes (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member FetchAttributes : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.FetchAttributes : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.FetchAttributes (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Fetches the queue's attributes.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FetchAttributesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task FetchAttributesAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task FetchAttributesAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.FetchAttributesAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FetchAttributesAsync () As Task" />
<MemberSignature Language="F#" Value="abstract member FetchAttributesAsync : unit -> System.Threading.Tasks.Task
override this.FetchAttributesAsync : unit -> System.Threading.Tasks.Task" Usage="cloudQueue.FetchAttributesAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FetchAttributesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task FetchAttributesAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task FetchAttributesAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.FetchAttributesAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FetchAttributesAsync (cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member FetchAttributesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.FetchAttributesAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.FetchAttributesAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FetchAttributesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task FetchAttributesAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task FetchAttributesAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.FetchAttributesAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FetchAttributesAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member FetchAttributesAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.FetchAttributesAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.FetchAttributesAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="FetchAttributesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task FetchAttributesAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task FetchAttributesAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.FetchAttributesAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function FetchAttributesAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member FetchAttributesAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.FetchAttributesAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.FetchAttributesAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to fetch the queue's attributes.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.CloudQueueMessage GetMessage (TimeSpan? visibilityTimeout = default, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.CloudQueueMessage GetMessage(valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessage(System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessage (Optional visibilityTimeout As Nullable(Of TimeSpan) = Nothing, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As CloudQueueMessage" />
<MemberSignature Language="F#" Value="abstract member GetMessage : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.CloudQueueMessage
override this.GetMessage : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.CloudQueueMessage" Usage="cloudQueue.GetMessage (visibilityTimeout, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.CloudQueueMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
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.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessageAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessageAsync () As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessageAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.GetMessageAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.GetMessageAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessageAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessageAsync (cancellationToken As CancellationToken) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessageAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.GetMessageAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.GetMessageAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync (TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync(valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessageAsync(System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessageAsync (visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessageAsync : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.GetMessageAsync : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.GetMessageAsync (visibilityTimeout, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
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.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync (TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessageAsync(valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessageAsync(System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessageAsync (visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessageAsync : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.GetMessageAsync : Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.GetMessageAsync (visibilityTimeout, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
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.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessages">
<MemberSignature Language="C#" Value="public virtual System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessages (int messageCount, TimeSpan? visibilityTimeout = default, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> GetMessages(int32 messageCount, valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessages(System.Int32,System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessages (messageCount As Integer, Optional visibilityTimeout As Nullable(Of TimeSpan) = Nothing, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As IEnumerable(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member GetMessages : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.GetMessages : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.GetMessages (messageCount, visibilityTimeout, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Gets 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.
</summary>
<returns>An enumerable collection of messages.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync (int messageCount);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync(int32 messageCount) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessagesAsync(System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessagesAsync (messageCount As Integer) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member GetMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.GetMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.GetMessagesAsync messageCount" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<summary>
Initiates an asynchronous operation to get messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync (int messageCount, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync(int32 messageCount, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessagesAsync(System.Int32,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessagesAsync (messageCount As Integer, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member GetMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.GetMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.GetMessagesAsync (messageCount, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync (int messageCount, TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync(int32 messageCount, valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessagesAsync(System.Int32,System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessagesAsync (messageCount As Integer, visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member GetMessagesAsync : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.GetMessagesAsync : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.GetMessagesAsync (messageCount, visibilityTimeout, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
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.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync (int messageCount, TimeSpan? visibilityTimeout, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> GetMessagesAsync(int32 messageCount, valuetype System.Nullable`1<valuetype System.TimeSpan> visibilityTimeout, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetMessagesAsync(System.Int32,System.Nullable{System.TimeSpan},Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetMessagesAsync (messageCount As Integer, visibilityTimeout As Nullable(Of TimeSpan), options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member GetMessagesAsync : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.GetMessagesAsync : int * Nullable<TimeSpan> * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.GetMessagesAsync (messageCount, visibilityTimeout, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="visibilityTimeout" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to retrieve. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
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.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetPermissions">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions GetPermissions (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions GetPermissions(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetPermissions(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPermissions (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As QueuePermissions" />
<MemberSignature Language="F#" Value="abstract member GetPermissions : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions
override this.GetPermissions : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" Usage="cloudQueue.GetPermissions (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Gets the permissions settings for the queue.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetPermissionsAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPermissionsAsync () As Task(Of QueuePermissions)" />
<MemberSignature Language="F#" Value="abstract member GetPermissionsAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>
override this.GetPermissionsAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>" Usage="cloudQueue.GetPermissionsAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetPermissionsAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPermissionsAsync (cancellationToken As CancellationToken) As Task(Of QueuePermissions)" />
<MemberSignature Language="F#" Value="abstract member GetPermissionsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>
override this.GetPermissionsAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>" Usage="cloudQueue.GetPermissionsAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetPermissionsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPermissionsAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task(Of QueuePermissions)" />
<MemberSignature Language="F#" Value="abstract member GetPermissionsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>
override this.GetPermissionsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>" Usage="cloudQueue.GetPermissionsAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions> GetPermissionsAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetPermissionsAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function GetPermissionsAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of QueuePermissions)" />
<MemberSignature Language="F#" Value="abstract member GetPermissionsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>
override this.GetPermissionsAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions>" Usage="cloudQueue.GetPermissionsAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get the permissions settings for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetSharedAccessSignature">
<MemberSignature Language="C#" Value="public string GetSharedAccessSignature (Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetSharedAccessSignature(class Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetSharedAccessSignature(Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy)" />
<MemberSignature Language="VB.NET" Value="Public Function GetSharedAccessSignature (policy As SharedAccessQueuePolicy) As String" />
<MemberSignature Language="F#" Value="member this.GetSharedAccessSignature : Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy -> string" Usage="cloudQueue.GetSharedAccessSignature policy" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="policy" Type="Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" />
</Parameters>
<Docs>
<param name="policy">A <see cref="T:Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" /> object specifying the access policy for the shared access signature.</param>
<summary>
Returns a shared access signature for the queue.
</summary>
<returns>A shared access signature, as a URI query string.</returns>
<remarks>The query string returned includes the leading question mark.</remarks>
</Docs>
</Member>
<Member MemberName="GetSharedAccessSignature">
<MemberSignature Language="C#" Value="public string GetSharedAccessSignature (Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy, string accessPolicyIdentifier);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetSharedAccessSignature(class Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy, string accessPolicyIdentifier) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetSharedAccessSignature(Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy,System.String)" />
<MemberSignature Language="VB.NET" Value="Public Function GetSharedAccessSignature (policy As SharedAccessQueuePolicy, accessPolicyIdentifier As String) As String" />
<MemberSignature Language="F#" Value="member this.GetSharedAccessSignature : Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy * string -> string" Usage="cloudQueue.GetSharedAccessSignature (policy, accessPolicyIdentifier)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="policy" Type="Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" />
<Parameter Name="accessPolicyIdentifier" Type="System.String" />
</Parameters>
<Docs>
<param name="policy">A <see cref="T:Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" /> object specifying the access policy for the shared access signature.</param>
<param name="accessPolicyIdentifier">A string identifying a stored access policy.</param>
<summary>
Returns a shared access signature for the queue.
</summary>
<returns>A shared access signature, as a URI query string.</returns>
<remarks>The query string returned includes the leading question mark.</remarks>
</Docs>
</Member>
<Member MemberName="GetSharedAccessSignature">
<MemberSignature Language="C#" Value="public string GetSharedAccessSignature (Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy, string accessPolicyIdentifier, Microsoft.Azure.Storage.SharedAccessProtocol? protocols, Microsoft.Azure.Storage.IPAddressOrRange ipAddressOrRange);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetSharedAccessSignature(class Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy policy, string accessPolicyIdentifier, valuetype System.Nullable`1<valuetype Microsoft.Azure.Storage.SharedAccessProtocol> protocols, class Microsoft.Azure.Storage.IPAddressOrRange ipAddressOrRange) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.GetSharedAccessSignature(Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy,System.String,System.Nullable{Microsoft.Azure.Storage.SharedAccessProtocol},Microsoft.Azure.Storage.IPAddressOrRange)" />
<MemberSignature Language="VB.NET" Value="Public Function GetSharedAccessSignature (policy As SharedAccessQueuePolicy, accessPolicyIdentifier As String, protocols As Nullable(Of SharedAccessProtocol), ipAddressOrRange As IPAddressOrRange) As String" />
<MemberSignature Language="F#" Value="member this.GetSharedAccessSignature : Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy * string * Nullable<Microsoft.Azure.Storage.SharedAccessProtocol> * Microsoft.Azure.Storage.IPAddressOrRange -> string" Usage="cloudQueue.GetSharedAccessSignature (policy, accessPolicyIdentifier, protocols, ipAddressOrRange)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="policy" Type="Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" />
<Parameter Name="accessPolicyIdentifier" Type="System.String" />
<Parameter Name="protocols" Type="System.Nullable<Microsoft.Azure.Storage.SharedAccessProtocol>" />
<Parameter Name="ipAddressOrRange" Type="Microsoft.Azure.Storage.IPAddressOrRange" />
</Parameters>
<Docs>
<param name="policy">A <see cref="T:Microsoft.Azure.Storage.Queue.SharedAccessQueuePolicy" /> object specifying the access policy for the shared access signature.</param>
<param name="accessPolicyIdentifier">A string identifying a stored access policy.</param>
<param name="protocols">The allowed protocols (https only, or http and https). Null if you don't want to restrict protocol.</param>
<param name="ipAddressOrRange">The allowed IP address or IP address range. Null if you don't want to restrict based on IP address.</param>
<summary>
Returns a shared access signature for the queue.
</summary>
<returns>A shared access signature, as a URI query string.</returns>
<remarks>The query string returned includes the leading question mark.</remarks>
</Docs>
</Member>
<Member MemberName="Metadata">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IDictionary<string,string> Metadata { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IDictionary`2<string, string> Metadata" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.Metadata" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Metadata As IDictionary(Of String, String)" />
<MemberSignature Language="F#" Value="member this.Metadata : System.Collections.Generic.IDictionary<string, string>" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.Metadata" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IDictionary<System.String,System.String></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the queue's metadata.
</summary>
<value>An <see cref="T:System.Collections.Generic.IDictionary`2" /> object containing the queue's metadata.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Name">
<MemberSignature Language="C#" Value="public string Name { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Name" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.Name" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Name As String" />
<MemberSignature Language="F#" Value="member this.Name : string" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.Name" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the name of the queue.
</summary>
<value>A string containing the name of the queue.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessage">
<MemberSignature Language="C#" Value="public virtual Microsoft.Azure.Storage.Queue.CloudQueueMessage PeekMessage (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Microsoft.Azure.Storage.Queue.CloudQueueMessage PeekMessage(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessage(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessage (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As CloudQueueMessage" />
<MemberSignature Language="F#" Value="abstract member PeekMessage : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.CloudQueueMessage
override this.PeekMessage : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> Microsoft.Azure.Storage.Queue.CloudQueueMessage" Usage="cloudQueue.PeekMessage (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.CloudQueueMessage</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Peeks a single message from the queue. A peek request retrieves a message from the queue without changing its visibility.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessageAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessageAsync () As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member PeekMessageAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.PeekMessageAsync : unit -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.PeekMessageAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessageAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessageAsync (cancellationToken As CancellationToken) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member PeekMessageAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.PeekMessageAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.PeekMessageAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessageAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessageAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member PeekMessageAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.PeekMessageAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.PeekMessageAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessageAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessageAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessageAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member PeekMessageAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.PeekMessageAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.PeekMessageAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to get a single message from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessages">
<MemberSignature Language="C#" Value="public virtual System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessages (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage> PeekMessages(int32 messageCount, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessages(System.Int32,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessages (messageCount As Integer, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing) As IEnumerable(Of CloudQueueMessage)" />
<MemberSignature Language="F#" Value="abstract member PeekMessages : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>
override this.PeekMessages : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>" Usage="cloudQueue.PeekMessages (messageCount, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
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.
</summary>
<returns>An enumerable collection of <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> objects.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync(int32 messageCount) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessagesAsync(System.Int32)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessagesAsync (messageCount As Integer) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member PeekMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.PeekMessagesAsync messageCount" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<summary>
Initiates an asynchronous operation to peek messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync(int32 messageCount, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessagesAsync(System.Int32,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessagesAsync (messageCount As Integer, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member PeekMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.PeekMessagesAsync (messageCount, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to peek messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync(int32 messageCount, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessagesAsync(System.Int32,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessagesAsync (messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.PeekMessagesAsync (messageCount, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to peek messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PeekMessagesAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync (int messageCount, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Storage.Queue.CloudQueueMessage>> PeekMessagesAsync(int32 messageCount, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.PeekMessagesAsync(System.Int32,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function PeekMessagesAsync (messageCount As Integer, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task(Of IEnumerable(Of CloudQueueMessage))" />
<MemberSignature Language="F#" Value="abstract member PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>
override this.PeekMessagesAsync : int * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<Microsoft.Azure.Storage.Queue.CloudQueueMessage>>" Usage="cloudQueue.PeekMessagesAsync (messageCount, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Microsoft.Azure.Storage.Queue.CloudQueueMessage>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="messageCount" Type="System.Int32" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="messageCount">The number of messages to peek. The maximum number of messages that may be retrieved at one time is 32.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to peek messages from the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task`1" /> object that is an enumerable collection of type <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ServiceClient">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Storage.Queue.CloudQueueClient ServiceClient { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Storage.Queue.CloudQueueClient ServiceClient" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.ServiceClient" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ServiceClient As CloudQueueClient" />
<MemberSignature Language="F#" Value="member this.ServiceClient : Microsoft.Azure.Storage.Queue.CloudQueueClient" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.ServiceClient" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.Queue.CloudQueueClient</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueClient" /> object that represents the Queue service.
</summary>
<value>A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueClient" /> object.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetMetadata">
<MemberSignature Language="C#" Value="public virtual void SetMetadata (Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetMetadata(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetMetadata(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub SetMetadata (Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member SetMetadata : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.SetMetadata : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.SetMetadata (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Sets the queue's user-defined metadata.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetMetadataAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetMetadataAsync ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetMetadataAsync() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetMetadataAsync" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetMetadataAsync () As Task" />
<MemberSignature Language="F#" Value="abstract member SetMetadataAsync : unit -> System.Threading.Tasks.Task
override this.SetMetadataAsync : unit -> System.Threading.Tasks.Task" Usage="cloudQueue.SetMetadataAsync " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>
Initiates an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetMetadataAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetMetadataAsync (System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetMetadataAsync(valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetMetadataAsync(System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetMetadataAsync (cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member SetMetadataAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.SetMetadataAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.SetMetadataAsync cancellationToken" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetMetadataAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetMetadataAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetMetadataAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetMetadataAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetMetadataAsync (options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member SetMetadataAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.SetMetadataAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.SetMetadataAsync (options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetMetadataAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetMetadataAsync (Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetMetadataAsync(class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetMetadataAsync(Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetMetadataAsync (options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member SetMetadataAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.SetMetadataAsync : Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.SetMetadataAsync (options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to set user-defined metadata on the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetPermissions">
<MemberSignature Language="C#" Value="public virtual void SetPermissions (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void SetPermissions(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetPermissions(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub SetPermissions (permissions As QueuePermissions, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member SetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.SetPermissions : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.SetPermissions (permissions, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Sets permissions for the queue.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetPermissionsAsync (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetPermissionsAsync(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetPermissionsAsync(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetPermissionsAsync (permissions As QueuePermissions) As Task" />
<MemberSignature Language="F#" Value="abstract member SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions -> System.Threading.Tasks.Task
override this.SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions -> System.Threading.Tasks.Task" Usage="cloudQueue.SetPermissionsAsync permissions" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<summary>
Initiates an asynchronous operation to set permissions for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetPermissionsAsync (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetPermissionsAsync(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetPermissionsAsync(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetPermissionsAsync (permissions As QueuePermissions, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.SetPermissionsAsync (permissions, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to set permissions for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetPermissionsAsync (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetPermissionsAsync(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetPermissionsAsync(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetPermissionsAsync (permissions As QueuePermissions, options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.SetPermissionsAsync (permissions, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to set permissions for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="SetPermissionsAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task SetPermissionsAsync (Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task SetPermissionsAsync(class Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions permissions, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.SetPermissionsAsync(Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function SetPermissionsAsync (permissions As QueuePermissions, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.SetPermissionsAsync : Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.SetPermissionsAsync (permissions, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="permissions" Type="Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="permissions">A <see cref="T:Microsoft.Azure.Storage.Queue.Protocol.QueuePermissions" /> object.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to set permissions for the queue.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="StorageUri">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Storage.StorageUri StorageUri { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Storage.StorageUri StorageUri" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.StorageUri" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property StorageUri As StorageUri" />
<MemberSignature Language="F#" Value="member this.StorageUri : Microsoft.Azure.Storage.StorageUri" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.StorageUri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Storage.StorageUri</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the queue URIs for both the primary and secondary locations.
</summary>
<value>An object of type <see cref="P:Microsoft.Azure.Storage.Queue.CloudQueue.StorageUri" /> containing the queue's URIs for both the primary and secondary locations.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateMessage">
<MemberSignature Language="C#" Value="public virtual void UpdateMessage (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, Microsoft.Azure.Storage.Queue.QueueRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void UpdateMessage(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.UpdateMessage(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Sub UpdateMessage (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, Optional options As QueueRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)" />
<MemberSignature Language="F#" Value="abstract member UpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.UpdateMessage : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit" Usage="cloudQueue.UpdateMessage (message, visibilityTimeout, updateFields, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">Flags of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specifies which parts of the message are to be updated.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request. If <c>null</c>, default options are applied to the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Updates the visibility timeout and optionally the content of a message.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task UpdateMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task UpdateMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.UpdateMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessageAsync (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields) As Task" />
<MemberSignature Language="F#" Value="abstract member UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields -> System.Threading.Tasks.Task
override this.UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields -> System.Threading.Tasks.Task" Usage="cloudQueue.UpdateMessageAsync (message, visibilityTimeout, updateFields)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<summary>
Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task UpdateMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task UpdateMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.UpdateMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessageAsync (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.UpdateMessageAsync (message, visibilityTimeout, updateFields, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task UpdateMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task UpdateMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.UpdateMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessageAsync (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, options As QueueRequestOptions, operationContext As OperationContext) As Task" />
<MemberSignature Language="F#" Value="abstract member UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task
override this.UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext -> System.Threading.Tasks.Task" Usage="cloudQueue.UpdateMessageAsync (message, visibilityTimeout, updateFields, options, operationContext)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<summary>
Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateMessageAsync">
<MemberSignature Language="C#" Value="public virtual System.Threading.Tasks.Task UpdateMessageAsync (Microsoft.Azure.Storage.Queue.CloudQueueMessage message, TimeSpan visibilityTimeout, Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, Microsoft.Azure.Storage.Queue.QueueRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, System.Threading.CancellationToken cancellationToken);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Threading.Tasks.Task UpdateMessageAsync(class Microsoft.Azure.Storage.Queue.CloudQueueMessage message, valuetype System.TimeSpan visibilityTimeout, valuetype Microsoft.Azure.Storage.Queue.MessageUpdateFields updateFields, class Microsoft.Azure.Storage.Queue.QueueRequestOptions options, class Microsoft.Azure.Storage.OperationContext operationContext, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Storage.Queue.CloudQueue.UpdateMessageAsync(Microsoft.Azure.Storage.Queue.CloudQueueMessage,System.TimeSpan,Microsoft.Azure.Storage.Queue.MessageUpdateFields,Microsoft.Azure.Storage.Queue.QueueRequestOptions,Microsoft.Azure.Storage.OperationContext,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Overridable Function UpdateMessageAsync (message As CloudQueueMessage, visibilityTimeout As TimeSpan, updateFields As MessageUpdateFields, options As QueueRequestOptions, operationContext As OperationContext, cancellationToken As CancellationToken) As Task" />
<MemberSignature Language="F#" Value="abstract member UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.UpdateMessageAsync : Microsoft.Azure.Storage.Queue.CloudQueueMessage * TimeSpan * Microsoft.Azure.Storage.Queue.MessageUpdateFields * Microsoft.Azure.Storage.Queue.QueueRequestOptions * Microsoft.Azure.Storage.OperationContext * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudQueue.UpdateMessageAsync (message, visibilityTimeout, updateFields, options, operationContext, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Microsoft.Azure.Storage.DoesServiceRequest]</AttributeName>
<AttributeName Language="F#">[<Microsoft.Azure.Storage.DoesServiceRequest>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="message" Type="Microsoft.Azure.Storage.Queue.CloudQueueMessage" />
<Parameter Name="visibilityTimeout" Type="System.TimeSpan" />
<Parameter Name="updateFields" Type="Microsoft.Azure.Storage.Queue.MessageUpdateFields" />
<Parameter Name="options" Type="Microsoft.Azure.Storage.Queue.QueueRequestOptions" />
<Parameter Name="operationContext" Type="Microsoft.Azure.Storage.OperationContext" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="message">A <see cref="T:Microsoft.Azure.Storage.Queue.CloudQueueMessage" /> object.</param>
<param name="visibilityTimeout">A <see cref="T:System.TimeSpan" /> specifying the visibility timeout interval.</param>
<param name="updateFields">A set of <see cref="T:Microsoft.Azure.Storage.Queue.MessageUpdateFields" /> values that specify which parts of the message are to be updated.</param>
<param name="options">A <see cref="T:Microsoft.Azure.Storage.Queue.QueueRequestOptions" /> object that specifies additional options for the request.</param>
<param name="operationContext">An <see cref="T:Microsoft.Azure.Storage.OperationContext" /> object that represents the context for the current operation.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> to observe while waiting for a task to complete.</param>
<summary>
Initiates an asynchronous operation to update the visibility timeout and optionally the content of a message.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Uri">
<MemberSignature Language="C#" Value="public Uri Uri { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Uri Uri" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Storage.Queue.CloudQueue.Uri" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Uri As Uri" />
<MemberSignature Language="F#" Value="member this.Uri : Uri" Usage="Microsoft.Azure.Storage.Queue.CloudQueue.Uri" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Storage.Queue</AssemblyName>
<AssemblyVersion>11.2.3.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the queue URI for the primary location.
</summary>
<value>A <see cref="T:System.Uri" /> specifying the absolute URI to the queue at the primary location.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>