Skip to content

Debology.Debby.Modules.Report

IReportModule Interface

The API for interacting with the Report module. This can be accessed via Report.

csharp
public interface IReportModule

Methods

IReportModule.Open() Method

Opens the Report module.

csharp
void Open();

IReportModule.SetReport(string, string) Method

Prefills the summary and description fields of the report. The report module should be opened before calling this method.

Note: Any existing summary / description will be overwritten, but screenshots will not be cleared.

csharp
void SetReport(string summary, string description);

Parameters

summary System.String

A short summary / title of the report

description System.String

Detailed description of the report.