TableQuery.Take Method

Windows Runtime Azure Storage Client Library

Defines the upper bound for the number of entities the query returns.

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

Usage

Visual Basic
Dim instance As TableQuery
Dim take As Nullable(Of Integer)
Dim returnValue As TableQuery

returnValue = instance.Take(take)

Syntax

Visual Basic
Public Function Take ( _
	take As Nullable(Of Integer) _
) As TableQuery
C#
public TableQuery Take (
	Nullable<int> take
)
C++
public:
TableQuery^ Take (
	Nullable<int> take
)
J#
public TableQuery Take (
	Nullable<int> take
)
JScript
public function Take (
	take : Nullable<int>
) : TableQuery

Parameters

take

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

Return Value

A TableQuery instance set with the number of entities 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