TableQuery.TakeCount Property

Windows Runtime Azure Storage Client Library

Gets or sets the number of entities the query returns specified in the table query.

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

Usage

Visual Basic
Dim instance As TableQuery(Of TElement)
Dim value As Nullable(Of Integer)

value = instance.TakeCount

instance.TakeCount = value

Syntax

Visual Basic
Public Property TakeCount As Nullable(Of Integer)
C#
public Nullable<int> TakeCount { get; set; }
C++
public:
property Nullable<int> TakeCount {
	Nullable<int> get ();
	void set (Nullable<int> value);
}
J#
/** @property */
public Nullable<int> get_TakeCount ()

/** @property */
public void set_TakeCount (Nullable<int> value)
JScript
public function get TakeCount () : Nullable<int>

public function set TakeCount (value : Nullable<int>)

Property Value

The maximum number of entities for the table query to return.

Thread Safety

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

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also