SearchParameters.Skip Property

Optional. Gets or sets the number of search results to skip. This value cannot be greater than 100,000. If you need to scan documents in sequence, but cannot use Skip due to this limitation, consider using OrderBy on a totally-ordered key and Filter with a range query instead.

Namespace: Microsoft.Azure.Search.Models
Assembly: Microsoft.Azure.Search (in Microsoft.Azure.Search.dll)

Usage

'Usage
Dim instance As SearchParameters
Dim value As Nullable(Of Integer)

value = instance.Skip

instance.Skip = value

Syntax

'Declaration
Public Property Skip As Nullable(Of Integer)
public Nullable<int> Skip { get; set; }
public:
property Nullable<int> Skip {
    Nullable<int> get ();
    void set (Nullable<int> value);
}
/** @property */
public Nullable<int> get_Skip ()

/** @property */
public void set_Skip (Nullable<int> value)
public function get Skip () : Nullable<int>

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

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

Reference

SearchParameters Class
SearchParameters Members
Microsoft.Azure.Search.Models Namespace