Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudQueue.BeginUpdateMessage Method (CloudQueueMessage, TimeSpan, MessageUpdateFields, QueueRequestOptions, OperationContext, AsyncCallback, Object) (Microsoft.WindowsAzure.Storage.Queue)

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

Namespace:   Microsoft.WindowsAzure.Storage.Queue
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Syntax

 
[DoesServiceRequestAttribute]
public virtual ICancellableAsyncResult BeginUpdateMessage(
	CloudQueueMessage message,
	TimeSpan visibilityTimeout,
	MessageUpdateFields updateFields,
	QueueRequestOptions options,
	OperationContext operationContext,
	AsyncCallback callback,
	object state
)
 
public:
[DoesServiceRequestAttribute]
virtual ICancellableAsyncResult^ BeginUpdateMessage(
	CloudQueueMessage^ message,
	TimeSpan visibilityTimeout,
	MessageUpdateFields updateFields,
	QueueRequestOptions^ options,
	OperationContext^ operationContext,
	AsyncCallback^ callback,
	Object^ state
)
 
[<DoesServiceRequestAttribute>]
abstract BeginUpdateMessage : 
        message:CloudQueueMessage *
        visibilityTimeout:TimeSpan *
        updateFields:MessageUpdateFields *
        options:QueueRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
[<DoesServiceRequestAttribute>]
override BeginUpdateMessage : 
        message:CloudQueueMessage *
        visibilityTimeout:TimeSpan *
        updateFields:MessageUpdateFields *
        options:QueueRequestOptions *
        operationContext:OperationContext *
        callback:AsyncCallback *
        state:Object -> ICancellableAsyncResult
 
<DoesServiceRequestAttribute>
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

Parameters

message
Type: Microsoft.WindowsAzure.Storage.Queue.CloudQueueMessageMicrosoft.WindowsAzure.Storage.Queue::CloudQueueMessage^Microsoft.WindowsAzure.Storage.Queue.CloudQueueMessageMicrosoft.WindowsAzure.Storage.Queue.CloudQueueMessage

A CloudQueueMessage object.

visibilityTimeout
Type: System.TimeSpanSystem::TimeSpanSystem.TimeSpanSystem.TimeSpan

A TimeSpan specifying the visibility timeout interval.

updateFields
Type: Microsoft.WindowsAzure.Storage.Queue.MessageUpdateFieldsMicrosoft.WindowsAzure.Storage.Queue::MessageUpdateFieldsMicrosoft.WindowsAzure.Storage.Queue.MessageUpdateFieldsMicrosoft.WindowsAzure.Storage.Queue.MessageUpdateFields

A set of MessageUpdateFields values that specify which parts of the message are to be updated.

options
Type: Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue::QueueRequestOptions^Microsoft.WindowsAzure.Storage.Queue.QueueRequestOptionsMicrosoft.WindowsAzure.Storage.Queue.QueueRequestOptions

A QueueRequestOptions object that specifies additional options for the request.

operationContext
Type: Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage::OperationContext^Microsoft.WindowsAzure.Storage.OperationContextMicrosoft.WindowsAzure.Storage.OperationContext

An OperationContext object that represents the context for the current operation.

callback
Type: System.AsyncCallbackSystem::AsyncCallback^System.AsyncCallbackSystem.AsyncCallback

An AsyncCallback delegate that will receive notification when the asynchronous operation completes.

state
Type: System.ObjectSystem::Object^System.ObjectSystem.Object

A user-defined object that will be passed to the callback delegate.

Return to top