Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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