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

ReportStorageWebExtension.GetUrls() Method

Returns a dictionary of the existing report URLs and display names.

Namespace: DevExpress.XtraReports.Web.Extensions

Assembly: DevExpress.XtraReports.v19.1.Web.dll

NuGet Package: DevExpress.Web.Reporting.Common

Declaration

public virtual Dictionary<string, string> GetUrls()

Returns

Type Description
Dictionary<String, String>

A dictionary of the existing report URLs and display names.

Remarks

The GetUrls method returns a dictionary whose keys are URLs of all reports available in the current Report Storage, and whose values are display names of these reports.

This method is called when running the Report Designer, before the Open Report and Save Report dialogs are shown, and after a new report is saved to a storage.

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetUrls() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also