Skip to main content
A newer version of this page is available. .

HeaderParameterCollection.AddRange(HeaderParameter[]) Method

Appends an array of HTTP header parameters to the HeaderParameterCollection.

Namespace: DevExpress.DataAccess.Json

Assembly: DevExpress.DataAccess.v19.2.dll

Declaration

public void AddRange(
    HeaderParameter[] items
)

Parameters

Name Type Description
items HeaderParameter[]

An array of HTTP header parameters to append to the collection.

Remarks

HTTP header parameters are appended to the HeaderParameterCollection 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