This topic has not yet been rated - Rate this topic

CloudQueueMessage.NextVisibleTime Property

Gets the time that the message will next be visible.

Namespace: Microsoft.WindowsAzure.StorageClient
Assembly: Microsoft.WindowsAzure.StorageClient (in Microsoft.WindowsAzure.StorageClient.dll)
'Usage
Dim instance As CloudQueueMessage
Dim value As Nullable(Of DateTime)

value = instance.NextVisibleTime

instance.NextVisibleTime = value
public Nullable<DateTime> NextVisibleTime { get; protected internal set; }
/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
public Nullable<DateTime> get_NextVisibleTime ()

/** @property */
/** @attribute CompilerGeneratedAttribute() */ 
protected void set_NextVisibleTime (Nullable<DateTime> value)

CompilerGeneratedAttribute 
public function get NextVisibleTime () : Nullable<DateTime>

CompilerGeneratedAttribute 
protected internal function set NextVisibleTime (value : Nullable<DateTime>)

Property Value

Type: System.Nullable

The time that the message will next be visible.

The NextVisibleTime property is updated when a message is retrieved from the queue using GetMessage or GetMessages, or by a call to UpdateMessage. It indicates when a message will become visible again to other clients, if it is not first deleted by the client that retrieved it.


Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Development Platforms

Windows Vista, Windows 7 and Windows Server 2008

Target Platforms

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.