Class DesignerReportController
Inheritance
System.Object
Microsoft.AspNetCore.Mvc.ControllerBase
DesignerReportController
Assembly: FastReport.OpenSource.Web.dll
Syntax
public sealed class DesignerReportController : ApiControllerBase
Constructors
DesignerReportController(IReportService, IReportDesignerService)
Declaration
public DesignerReportController(IReportService reportService, IReportDesignerService reportDesignerService)
Parameters
Methods
GetPreviewReport(String)
Declaration
[HttpPost]
[Route("/_fr/designer.previewReport")]
public async Task<IActionResult> GetPreviewReport(string reportId)
Parameters
Type |
Name |
Description |
System.String |
reportId |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.IActionResult> |
|
GetReport(String)
Declaration
[HttpGet]
[Route("/_fr/designer.getReport")]
public IActionResult GetReport(string reportId)
Parameters
Type |
Name |
Description |
System.String |
reportId |
|
Returns
Type |
Description |
Microsoft.AspNetCore.Mvc.IActionResult |
|
SaveReport(String)
Declaration
[HttpPost]
[Route("/_fr/designer.saveReport")]
public async Task<IActionResult> SaveReport(string reportId)
Parameters
Type |
Name |
Description |
System.String |
reportId |
|
Returns
Type |
Description |
System.Threading.Tasks.Task<Microsoft.AspNetCore.Mvc.IActionResult> |
|