Methods / Report Configuration Methods |
Web Services
Retrieves a report configuration from the system.
public virtual WFReportConfigure GetReportConfigure(string reportName)
Name | Type | Description |
---|---|---|
reportName |
|
WFReportConfigure object.
IWFAdminService svc = GetAdminService(); string reportName = ...; try { WFReportConfigure cfg = svc.GetReportConfigure(reportName); Console.WriteLine("Report Name: {0}, config:{1}", cfg.ReportName, cfg.Configure); } catch (Exception ex) { Console.WriteLine("Failed! " + ShUtil.GetSoapMessage(ex)); }
3.2.0.4 and higher