Skip to main content
All docs
V25.2
  • IReportParametersSerializer.ApplyParametersStateAsync(String, String) Method

    Applies report parameters to the specified report.

    Namespace: DevExpress.XtraReports.Web.ParametersPanel

    Assembly: DevExpress.XtraReports.v25.2.Web.dll

    NuGet Package: DevExpress.Web.Reporting.Common

    Declaration

    Task<XtraReport> ApplyParametersStateAsync(
        string reportName,
        string parametersState
    )

    Parameters

    Name Type Description
    reportName String

    A string report identifier.

    parametersState String

    A string that is the serialized parameters obtained from the client.

    Returns

    Type Description
    Task<XtraReport>

    A task that returns the XtraReport instance upon completion.

    Remarks

    Note that the reportName parameter requires a report name resolution service (IReportProvider or ReportStorageWebExtension) implemented and registered at application startup.

    The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ApplyParametersStateAsync(String, String) method.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also