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.v18.2.Web.dll

Declaration

public virtual byte[] GetData(
    string url
)

Parameters

Name Type Description
url String

A String specifying an 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.

For a code example, see the Implement a Report Storage document.

See Also