IDPSQueryObject Constructors

Definition

Overloads

IDPSQueryObject()

Initializes a new instance of the IDPSQueryObject class.

IDPSQueryObject(IList<FilterItems>, String, OrderBy, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the IDPSQueryObject class.

IDPSQueryObject()

Initializes a new instance of the IDPSQueryObject class.

public IDPSQueryObject ();
Public Sub New ()

Applies to

IDPSQueryObject(IList<FilterItems>, String, OrderBy, Nullable<Int32>, Nullable<Int32>)

Initializes a new instance of the IDPSQueryObject class.

public IDPSQueryObject (System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.FilterItems> filters = default, string search = default, Microsoft.Azure.Management.Network.Models.OrderBy orderBy = default, int? resultsPerPage = default, int? skip = default);
new Microsoft.Azure.Management.Network.Models.IDPSQueryObject : System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.FilterItems> * string * Microsoft.Azure.Management.Network.Models.OrderBy * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Network.Models.IDPSQueryObject
Public Sub New (Optional filters As IList(Of FilterItems) = Nothing, Optional search As String = Nothing, Optional orderBy As OrderBy = Nothing, Optional resultsPerPage As Nullable(Of Integer) = Nothing, Optional skip As Nullable(Of Integer) = Nothing)

Parameters

filters
IList<FilterItems>

Contain all filters names and values

search
String

Search term in all columns

orderBy
OrderBy

Column to sort response by

resultsPerPage
Nullable<Int32>

The number of the results to return in each page

skip
Nullable<Int32>

The number of records matching the filter to skip

Applies to