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

WebDocumentViewerConfigurationBuilder.EnablePassingExportOptionsPasswordsToClient() Method

SECURITY NOTE

For security reasons, PDF/Excel passwords specified in the Report Designer are not exposed in the Web Document Viewer. Read the following topic for details: Protect Sensitive Information.

Allows you to pass PDF/Excel passwords specified in the Report Designer to the Web Document Viewer.

Namespace: DevExpress.AspNetCore.Reporting

Assembly: DevExpress.AspNetCore.Reporting.v23.1.dll

NuGet Package: DevExpress.AspNetCore.Reporting

Declaration

public WebDocumentViewerConfigurationBuilder EnablePassingExportOptionsPasswordsToClient()

Returns

Type Description
WebDocumentViewerConfigurationBuilder

A WebDocumentViewerConfigurationBuilder that can be used to further configure the Web Document Viewer services.

Remarks

During the export process, the Document Viewer uses passwords specified in its Export Options tab.

If you fully trust your users and environments, you can enable passing these passwords to the Web Document Viewer. To do this, call the EnablePassingExportOptionsPasswordsToClient method at application startup.

using DevExpress.AspNetCore;
using DevExpress.AspNetCore.Reporting;
//... 

public class Startup {
//... 
    public void ConfigureServices(IServiceCollection services) {
        services.AddDevExpressControls();
        services.AddMvc(); 

        services.ConfigureReportingServices(configurator => {
            configurator.ConfigureWebDocumentViewer(viewerConfigurator => {
                viewerConfigurator.EnablePassingExportOptionsPasswordsToClient();
            });
        });        
    }
//...    
}
See Also