Skip to main content

GridViewExtension.WriteCsvToResponse(GridViewSettings, Object, Boolean, CsvExportOptions) Method

OBSOLETE

Use the ExportToCsv method instead.

Exports the grid’s data to a file in CSV format with the specified export options, and writes it to the Response in binary format.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v23.2.dll

NuGet Package: DevExpress.Web.Mvc5

Declaration

[Obsolete("Use the ExportToCsv method instead.", true)]
public static void WriteCsvToResponse(
    GridViewSettings settings,
    object dataObject,
    bool saveAsFile,
    CsvExportOptions exportOptions
)

Parameters

Name Type Description
settings GridViewSettings

A GridViewSettings object that contains GridView settings.

dataObject Object

An object representing the GridView’s data source.

saveAsFile Boolean

true to display the File Download dialog; false to display the file with exported data within a page.

exportOptions CsvExportOptions

A CsvExportOptionsEx object that provides export options.

See Also