Storage Client Library for Windows Runtime (Version 7.0)

Microsoft.WindowsAzure.Storage.Queue

Gets the approximate message count for the queue.

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

Syntax

 
public Nullable<int> ApproximateMessageCount { get; private set; }
 
public:
property Nullable<int> ApproximateMessageCount {
	Nullable<int> get();
	private: void set(Nullable<int> value);
}
 
member ApproximateMessageCount : Nullable<int> with get, private set
 
Public Property ApproximateMessageCount As Nullable(OfInteger)
	Get
	Private Set
End Property

Property Value

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

The approximate message count.

Return to top