Click or drag to resize
DtRequest Class
Representation of a DataTables or Editor request. This can be any form of request from the two libraries, including a standard DataTables get, a server-side processing request, or an Editor create, edit or delete command.
Inheritance Hierarchy
SystemObject
  DataTablesDtRequest

Namespace:  DataTables
Assembly:  DataTables (in DataTables.dll) Version: 1.6.5.0 (1.6.5.0)
Syntax
C#
public class DtRequest

The DtRequest type exposes the following members.

Constructors
  NameDescription
Public methodDtRequest
Convert an HTTP request submitted by the client-side into a DtRequest object
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberHttpData
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
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldAction
Editor action request
Public fieldColumns
Column information for server-side processing
Public fieldData
Dictionary of data sent by Editor (may contain nested data)
Public fieldDraw
DataTables draw counter for server-side processing
Public fieldIds
List of ids for Editor to operate on
Public fieldLength
DataTables page length parameter for server-side processing
Public fieldOrder
Column ordering information for server-side processing
Public fieldRequestType
Type of request this instance contains the data for
Public fieldSearch
Search information for server-side processing
Public fieldStart
DataTables record start pointer for server-side processing
Public fieldUploadField
Upload field name
Top
See Also