C# Класс Microsoft.WindowsAzure.StorageClient.CloudQueue

Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
AddMessageImpl System.Collections.Generic.IEnumerable
BeginGetMessagesInternal IAsyncResult
ClearMessagesImpl System.Collections.Generic.IEnumerable
CloudQueue System
CloudQueue System
CloudQueue System
CloudQueue System
CreateIfNotExistImpl System.Collections.Generic.IEnumerable
CreateImpl System.Collections.Generic.IEnumerable
DeleteImpl System.Collections.Generic.IEnumerable
DeleteMessageImpl System.Collections.Generic.IEnumerable
EndAddMessage void
EndClear void
EndCreate void
EndCreateIfNotExist bool
EndDelete void
EndDeleteMessage void
EndExists bool
EndFetchAttributes void
EndGetMessage Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
EndGetMessages IEnumerable
EndPeekMessage Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
EndPeekMessages IEnumerable
EndSetMetadata void
EndUpdateMessage void
ExistsImpl System.Collections.Generic.IEnumerable
FetchAttributesImpl System.Collections.Generic.IEnumerable
GenerateMessageContentsForRequest string
GetIndividualMessageAddress System.Uri
GetMessageInternal Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
GetMessagesImpl System.Collections.Generic.IEnumerable
GetMessagesInternal IEnumerable
GetPropertiesAndMetadataFromResponse void
MaterializeAndParseResponse IEnumerable
PeekMessagesImpl System.Collections.Generic.IEnumerable
SelectGetMessageResponse Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
SelectPeekMessageResponse Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
SetMetadataImpl System.Collections.Generic.IEnumerable
UpdateMessageImpl System.Collections.Generic.IEnumerable

Открытые методы

Метод Описание
AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message ) : void

Adds a message to the queue.

AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive ) : void

Adds a message to the queue.

AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, System.TimeSpan initialVisibilityDelay ) : void

Adds a message to the queue.

BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to add a message to the queue.

BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to add a message to the queue.

BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, System.TimeSpan initialVisibilityDelay, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to add a message to the queue.

BeginClear ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to clear all messages from the queue.

BeginCreate ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to create a queue.

BeginCreateIfNotExist ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to create the queue if it does not exist.

BeginDelete ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to delete the queue.

BeginDeleteMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to delete a message.

BeginDeleteMessage ( string messageId, string popReceipt, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to delete a message.

BeginExists ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to determine whether the queue exists.

BeginFetchAttributes ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to fetch the queue's attributes.

BeginGetMessage ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to get a single message from the queue.

BeginGetMessage ( System.TimeSpan visibilityTimeout, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to get a single message from the queue.

BeginGetMessages ( int messageCount, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to get messages from the queue.

BeginGetMessages ( int messageCount, System.TimeSpan visibilityTimeout, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to get messages from the queue.

BeginPeekMessage ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to peek a message from the queue.

BeginPeekMessages ( int messageCount, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to peek a set of messages from the queue.

BeginSetMetadata ( AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to set the queue's metadata.

BeginUpdateMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan visibilityTimeout, MessageUpdateFields updateFields, AsyncCallback callback, object state ) : IAsyncResult

Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.

Clear ( ) : void

Clears all messages from the queue.

CloudQueue ( string address, StorageCredentials credentials ) : System

Initializes a new instance of the CloudQueue class.

Create ( ) : void

Creates a queue.

CreateIfNotExist ( ) : bool

Creates the queue if it does not exist.

Delete ( ) : void

Deletes the queue.

DeleteMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message ) : void

Deletes a message.

DeleteMessage ( string messageId, string popReceipt ) : void

Deletes a message.

Exists ( ) : bool

Determines if the queue exists.

FetchAttributes ( ) : void

Fetches the queue's attributes.

GetMessage ( ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Gets a single message from the queue.

GetMessage ( System.TimeSpan visibilityTimeout ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Gets a single message from the queue.

GetMessages ( int messageCount ) : IEnumerable

Gets a list of messages from the queue.

GetMessages ( int messageCount, System.TimeSpan visibilityTimeout ) : IEnumerable

Gets a list of messages from the queue.

PeekMessage ( ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Peeks a message from the queue.

PeekMessages ( int messageCount ) : IEnumerable

Peeks a set of messages from the queue.

RetrieveApproximateMessageCount ( ) : int

Retrieves the approximate message count for the queue. This method fetches the value from the server and updates the ApproximateMessageCount property as well.

SetMetadata ( ) : void

Sets the queue's metadata.

UpdateMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan visibilityTimeout, MessageUpdateFields updateFields ) : void

Updates the visibility timeout and optionally the content of a message.

Приватные методы

Метод Описание
AddMessageImpl ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, System.TimeSpan initialVisibilityDelay ) : System.Collections.Generic.IEnumerable

Generates a task sequence for adding a message to the queue.

BeginGetMessagesInternal ( int numberOfMesages, System.TimeSpan visibilityTimeout, AsyncCallback callback, object state ) : IAsyncResult

Begins the get messages internal.

ClearMessagesImpl ( ) : System.Collections.Generic.IEnumerable

Clears the messages impl.

CloudQueue ( QueueAttributes attributes, CloudQueueClient client ) : System

Initializes a new instance of the CloudQueue class.

CloudQueue ( Uri queueAddress, CloudQueueClient client ) : System

Initializes a new instance of the CloudQueue class.

CloudQueue ( bool usePathStyleUris, string address, StorageCredentials credentials ) : System

Initializes a new instance of the CloudQueue class.

CloudQueue ( string address, StorageCredentials credentials, bool usePathStyleUris ) : System

Initializes a new instance of the CloudQueue class.

CreateIfNotExistImpl ( Action setResult ) : System.Collections.Generic.IEnumerable

Creates if not exist impl.

CreateImpl ( ) : System.Collections.Generic.IEnumerable

Creates the impl.

DeleteImpl ( ) : System.Collections.Generic.IEnumerable

Deletes the impl.

DeleteMessageImpl ( string messageId, string popReceipt ) : System.Collections.Generic.IEnumerable

Deletes the message impl.

EndAddMessage ( IAsyncResult asyncResult ) : void
EndClear ( IAsyncResult asyncResult ) : void
EndCreate ( IAsyncResult asyncResult ) : void
EndCreateIfNotExist ( IAsyncResult asyncResult ) : bool
EndDelete ( IAsyncResult asyncResult ) : void
EndDeleteMessage ( IAsyncResult asyncResult ) : void
EndExists ( IAsyncResult asyncResult ) : bool
EndFetchAttributes ( IAsyncResult asyncResult ) : void
EndGetMessage ( IAsyncResult asyncResult ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
EndGetMessages ( IAsyncResult asyncResult ) : IEnumerable
EndPeekMessage ( IAsyncResult asyncResult ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
EndPeekMessages ( IAsyncResult asyncResult ) : IEnumerable
EndSetMetadata ( IAsyncResult asyncResult ) : void
EndUpdateMessage ( IAsyncResult asyncResult ) : void
ExistsImpl ( Action setResult ) : System.Collections.Generic.IEnumerable

Existses the impl.

FetchAttributesImpl ( ) : System.Collections.Generic.IEnumerable

Fetches the metadata and properties impl.

GenerateMessageContentsForRequest ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message ) : string

Generates a suitable string for representing the content of a message in the body of a web request.

GetIndividualMessageAddress ( string messageId ) : Uri

Gets the individual message address.

GetMessageInternal ( System.TimeSpan visibilityTimeout ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Gets the message internal.

GetMessagesImpl ( int numberOfMessages, System.TimeSpan visibilityTimeout, Action setResult ) : System.Collections.Generic.IEnumerable

Gets the messages impl.

GetMessagesInternal ( int numberOfMessages, System.TimeSpan visibilityTimeout ) : IEnumerable

Gets the messages internal.

GetPropertiesAndMetadataFromResponse ( HttpWebResponse webResponse ) : void

Gets the properties and metadata from response.

MaterializeAndParseResponse ( IEnumerable protocolList, CloudQueueMessage>.Func responseProjector ) : IEnumerable

Materialize results so that we can close the response object.

PeekMessagesImpl ( int numberOfMessages, Action setResult ) : System.Collections.Generic.IEnumerable

Peeks the messages impl.

SelectGetMessageResponse ( QueueMessage protocolMessage ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Selects the get message response.

SelectPeekMessageResponse ( QueueMessage protocolMessage ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

Selects the peek message response.

SetMetadataImpl ( ) : System.Collections.Generic.IEnumerable

Sets the metadata impl.

UpdateMessageImpl ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan visibilityTimeout, MessageUpdateFields updateFlags ) : System.Collections.Generic.IEnumerable

Generates a task sequence for updating a message in the queue.

Описание методов

AddMessage() публичный Метод

Adds a message to the queue.
public AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message ) : void
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
Результат void

AddMessage() публичный Метод

Adds a message to the queue.
public AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive ) : void
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
timeToLive System.TimeSpan The maximum time to allow the message to be in the queue.
Результат void

AddMessage() публичный Метод

Adds a message to the queue.
public AddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, System.TimeSpan initialVisibilityDelay ) : void
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
timeToLive System.TimeSpan The maximum time to allow the message to be in the queue, or null.
initialVisibilityDelay System.TimeSpan The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately.
Результат void

BeginAddMessage() публичный Метод

Begins an asynchronous operation to add a message to the queue.
public BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, AsyncCallback callback, object state ) : IAsyncResult
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginAddMessage() публичный Метод

Begins an asynchronous operation to add a message to the queue.
public BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, AsyncCallback callback, object state ) : IAsyncResult
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
timeToLive System.TimeSpan The maximum time to allow the message to be in the queue.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginAddMessage() публичный Метод

Begins an asynchronous operation to add a message to the queue.
public BeginAddMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan timeToLive, System.TimeSpan initialVisibilityDelay, AsyncCallback callback, object state ) : IAsyncResult
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to add.
timeToLive System.TimeSpan The maximum time to allow the message to be in the queue, or null.
initialVisibilityDelay System.TimeSpan The length of time from now during which the message will be invisible. /// If null then the message will be visible immediately.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginClear() публичный Метод

Begins an asynchronous operation to clear all messages from the queue.
public BeginClear ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginCreate() публичный Метод

Begins an asynchronous operation to create a queue.
public BeginCreate ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginCreateIfNotExist() публичный Метод

Begins an asynchronous operation to create the queue if it does not exist.
public BeginCreateIfNotExist ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginDelete() публичный Метод

Begins an asynchronous operation to delete the queue.
public BeginDelete ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginDeleteMessage() публичный Метод

Begins an asynchronous operation to delete a message.
public BeginDeleteMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, AsyncCallback callback, object state ) : IAsyncResult
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage A message.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginDeleteMessage() публичный Метод

Begins an asynchronous operation to delete a message.
public BeginDeleteMessage ( string messageId, string popReceipt, AsyncCallback callback, object state ) : IAsyncResult
messageId string The message ID.
popReceipt string The pop receipt value.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginExists() публичный Метод

Begins an asynchronous operation to determine whether the queue exists.
public BeginExists ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginFetchAttributes() публичный Метод

Begins an asynchronous operation to fetch the queue's attributes.
public BeginFetchAttributes ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginGetMessage() публичный Метод

Begins an asynchronous operation to get a single message from the queue.
public BeginGetMessage ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginGetMessage() публичный Метод

Begins an asynchronous operation to get a single message from the queue.
public BeginGetMessage ( System.TimeSpan visibilityTimeout, AsyncCallback callback, object state ) : IAsyncResult
visibilityTimeout System.TimeSpan The visibility timeout interval.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginGetMessages() публичный Метод

Begins an asynchronous operation to get messages from the queue.
public BeginGetMessages ( int messageCount, AsyncCallback callback, object state ) : IAsyncResult
messageCount int The number of messages to retrieve.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginGetMessages() публичный Метод

Begins an asynchronous operation to get messages from the queue.
public BeginGetMessages ( int messageCount, System.TimeSpan visibilityTimeout, AsyncCallback callback, object state ) : IAsyncResult
messageCount int The number of messages to retrieve.
visibilityTimeout System.TimeSpan The visibility timeout interval.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginPeekMessage() публичный Метод

Begins an asynchronous operation to peek a message from the queue.
public BeginPeekMessage ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginPeekMessages() публичный Метод

Begins an asynchronous operation to peek a set of messages from the queue.
public BeginPeekMessages ( int messageCount, AsyncCallback callback, object state ) : IAsyncResult
messageCount int The number of messages to retrieve.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginSetMetadata() публичный Метод

Begins an asynchronous operation to set the queue's metadata.
public BeginSetMetadata ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

BeginUpdateMessage() публичный Метод

Begins an asynchronous operation to update the visibility timeout and optionally the content of a message.
public BeginUpdateMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan visibilityTimeout, MessageUpdateFields updateFields, AsyncCallback callback, object state ) : IAsyncResult
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to update.
visibilityTimeout System.TimeSpan The length of time from now during which the message will be invisible.
updateFields MessageUpdateFields Flags indicating which parts of the message are to be updated. This must include the Visibility flag.
callback AsyncCallback The callback delegate that will receive notification when the asynchronous operation completes.
state object A user-defined object that will be passed to the callback delegate.
Результат IAsyncResult

Clear() публичный Метод

Clears all messages from the queue.
public Clear ( ) : void
Результат void

CloudQueue() публичный Метод

Initializes a new instance of the CloudQueue class.
public CloudQueue ( string address, StorageCredentials credentials ) : System
address string The absolute URI to the queue.
credentials StorageCredentials The account credentials.
Результат System

Create() публичный Метод

Creates a queue.
public Create ( ) : void
Результат void

CreateIfNotExist() публичный Метод

Creates the queue if it does not exist.
public CreateIfNotExist ( ) : bool
Результат bool

Delete() публичный Метод

Deletes the queue.
public Delete ( ) : void
Результат void

DeleteMessage() публичный Метод

Deletes a message.
public DeleteMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message ) : void
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage A message.
Результат void

DeleteMessage() публичный Метод

Deletes a message.
public DeleteMessage ( string messageId, string popReceipt ) : void
messageId string The message ID.
popReceipt string The pop receipt value.
Результат void

Exists() публичный Метод

Determines if the queue exists.
public Exists ( ) : bool
Результат bool

FetchAttributes() публичный Метод

Fetches the queue's attributes.
public FetchAttributes ( ) : void
Результат void

GetMessage() публичный Метод

Gets a single message from the queue.
public GetMessage ( ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
Результат Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

GetMessage() публичный Метод

Gets a single message from the queue.
public GetMessage ( System.TimeSpan visibilityTimeout ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
visibilityTimeout System.TimeSpan The visibility timeout interval.
Результат Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

GetMessages() публичный Метод

Gets a list of messages from the queue.
public GetMessages ( int messageCount ) : IEnumerable
messageCount int The number of messages to retrieve.
Результат IEnumerable

GetMessages() публичный Метод

Gets a list of messages from the queue.
public GetMessages ( int messageCount, System.TimeSpan visibilityTimeout ) : IEnumerable
messageCount int The number of messages to retrieve.
visibilityTimeout System.TimeSpan The visibility timeout interval.
Результат IEnumerable

PeekMessage() публичный Метод

Peeks a message from the queue.
public PeekMessage ( ) : Microsoft.WindowsAzure.StorageClient.CloudQueueMessage
Результат Microsoft.WindowsAzure.StorageClient.CloudQueueMessage

PeekMessages() публичный Метод

Peeks a set of messages from the queue.
public PeekMessages ( int messageCount ) : IEnumerable
messageCount int The number of messages to retrieve.
Результат IEnumerable

RetrieveApproximateMessageCount() публичный Метод

Retrieves the approximate message count for the queue. This method fetches the value from the server and updates the ApproximateMessageCount property as well.
public RetrieveApproximateMessageCount ( ) : int
Результат int

SetMetadata() публичный Метод

Sets the queue's metadata.
public SetMetadata ( ) : void
Результат void

UpdateMessage() публичный Метод

Updates the visibility timeout and optionally the content of a message.
public UpdateMessage ( Microsoft.WindowsAzure.StorageClient.CloudQueueMessage message, System.TimeSpan visibilityTimeout, MessageUpdateFields updateFields ) : void
message Microsoft.WindowsAzure.StorageClient.CloudQueueMessage The message to update.
visibilityTimeout System.TimeSpan The length of time from now during which the message will be invisible.
updateFields MessageUpdateFields Flags indicating which parts of the message are to be updated. This must include the Visibility flag.
Результат void