Skip to main content
All docs
V26.1
  • QueryParameterCollection.AddRange(QueryParameter[]) Method

    Appends an array of query parameters to the QueryParameterCollection.

    Namespace: DevExpress.DataAccess.Json

    Assembly: DevExpress.DataAccess.v26.1.dll

    NuGet Package: DevExpress.DataAccess

    Declaration

    public void AddRange(
        QueryParameter[] items
    )

    Parameters

    Name Type Description
    items QueryParameter[]

    An array of query parameters to append to the collection.

    Remarks

    Query parameters are appended to the QueryParameterCollection in the same order in which they are stored in the array, and are included in endpoint requests in the same order in which they are stored in the collection. Change the order of elements in the collection to reposition parameters in endpoint requests.

    See Also