Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets the time that the message will next be visible.

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

Syntax

 
public Nullable<DateTimeOffset> NextVisibleTime { get; internal set; }
 
public:
property Nullable<DateTimeOffset> NextVisibleTime {
	Nullable<DateTimeOffset> get();
	internal: void set(Nullable<DateTimeOffset> value);
}
 
member NextVisibleTime : Nullable<DateTimeOffset> with get, internal set
 
Public Property NextVisibleTime As Nullable(Of DateTimeOffset)
	Get
	Friend Set
End Property

Property Value

Type: System.Nullable<DateTimeOffset>System::Nullable<DateTimeOffset>System.Nullable<DateTimeOffset>System.Nullable(Of DateTimeOffset)

A DateTimeOffset indicating the time that the message will next be visible.

Return to top