Click or drag to resize
DtRequestHttpData Method
Convert HTTP request data, in the standard HTTP parameter form submitted by jQuery into a generic dictionary of string / object pairs so the data can easily be accessed in .NET. This static method is generic and not specific to the DtRequest. It may be used for other data formats as well. Note that currently this does not support nested arrays or objects in arrays

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public static Dictionary<string, Object> HttpData(
	IEnumerable<KeyValuePair<string, string>> dataIn
)

Parameters

dataIn
Type: System.Collections.GenericIEnumerableKeyValuePairString, String
Collection of HTTP parameters sent by the client-side

Return Value

Type: DictionaryString, Object
Dictionary with the data and values contained. These may contain nested lists and dictionaries.
See Also