ReportViewer.DeserializeClientParameters Event
Returns the values assigned to a report parameter on the client.
Namespace: DevExpress.XtraReports.Web
Assembly: DevExpress.XtraReports.v24.1.Web.WebForms.dll
NuGet Package: DevExpress.Web.Reporting
Declaration
public event EventHandler<DeserializeClientParameterEventArgs> DeserializeClientParameters
Event Data
The DeserializeClientParameters event's data class is DeserializeClientParameterEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Name | Specifies the parameter name. |
Path | Specifies the parameter path, relative to its parent container (e.g., “subreport1.subreportParameter1” for a subreport’s parameter, or “parameter1” for a report’s parameter). |
Value | Specifies the parameter value. |
Remarks
A report service serializes custom parameter types to a JSON string. Use the DeserializeClientParameters event to restore a custom type from this string on the client.
See Also