Initialize a new instance of SkipQueryOption based on the raw $skip value and an EdmModel from ODataQueryContext.
Namespace:   System.Web.OData.Query
Assembly:  System.Web.OData (in System.Web.OData.dll)
Syntax
public SkipQueryOption(
    string rawValue,
    ODataQueryContext context,
    ODataQueryOptionParser queryOptionParser
)
public:
SkipQueryOption(
    String^ rawValue,
    ODataQueryContext^ context,
    ODataQueryOptionParser^ queryOptionParser
)
new : 
        rawValue:string *
        context:ODataQueryContext *
        queryOptionParser:ODataQueryOptionParser -> SkipQueryOption
Public Sub New (
    rawValue As String,
    context As ODataQueryContext,
    queryOptionParser As ODataQueryOptionParser
)
Parameters
- rawValue 
 Type: System.String- The raw value for $skip query. It can be null or empty. 
- context 
 Type: System.Web.OData.ODataQueryContext- The ODataQueryContext which contains the IEdmModel and some type information 
- queryOptionParser 
 Type: Microsoft.OData.Core.UriParser.ODataQueryOptionParser- The ODataQueryOptionParser which is used to parse the query option. 
See Also
SkipQueryOption Class
System.Web.OData.Query Namespace
Return to top