ODataValidationSettings.MaxSkip Property
Gets or sets the max value of $skip that a client can request.
Namespace: System.Web.Http.OData.Query
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
'Declaration
Public Property MaxSkip As Nullable(Of Integer)
Get
Set
'Usage
Dim instance As ODataValidationSettings
Dim value As Nullable(Of Integer)
value = instance.MaxSkip
instance.MaxSkip = value
public Nullable<int> MaxSkip { get; set; }
public:
property Nullable<int> MaxSkip {
Nullable<int> get ();
void set (Nullable<int> value);
}
member MaxSkip : Nullable<int> with get, set
function get MaxSkip () : Nullable<int>
function set MaxSkip (value : Nullable<int>)
Property Value
Type: System.Nullable<Int32>
The max value of $skip that a client can request.