Skip to main content

ReportStorageWebExtension.GetData(String) Method

Returns report layout data stored within a report storage medium by the specified report name (URL).

Namespace: DevExpress.XtraReports.Web.Extensions

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

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public virtual byte[] GetData(
    string url
)

Parameters

Name Type Description
url String

A String that identifies a report in the storage.

Returns

Type Description
Byte[]

An array of Byte values that is a report layout definition in XML format.

Remarks

The GetData method uses a specified name (URL) to return report layout data stored within a report storage medium. This method is called if the IsValidUrl method returns true. You can use the GetData method to process report parameters sent from the client if the parameters are included in the report URL’s query string.

See Also