Skip to main content
A newer version of this page is available. .

ReportStorageWebExtension.GetData(String) Method

Returns report layout data stored in a Report Storage using the specified URL.

Namespace: DevExpress.XtraReports.Web.Extensions

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

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public virtual byte[] GetData(
    string url
)

Parameters

Name Type Description
url String

A String specifying a URL that identifies a report in the storage.

Returns

Type Description
Byte[]

An array of Byte values containing a report definition.

Remarks

The GetData method is called only for valid URLs after the ReportStorageWebExtension.IsValidUrl method is called.

Refer to the following help topic for a code example: Add a Report Storage.

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