[]
Renders the specified report.
public void Render(IReport report, StreamProvider streams)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | Stream for output. |
Renders the specified report with the specified settings.
public void Render(IReport report, StreamProvider streams, NameValueCollection settings)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | Stream for output. |
| NameValueCollection | settings | Settings used in the report. |
Renders the specified report with the specified settings.
public void Render(IReport report, StreamProvider streams, NameValueCollection settings, CancellationToken cancel)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | Stream for output. |
| NameValueCollection | settings | Settings used in the report. |
| CancellationToken | cancel | The CancellationToken object that allows to interrupt rendering. |
When overridden in a derived class, renders the report using the provided settings and streams.
protected abstract void Render(TSettings settings, StreamProvider streams, IReport report, CancellationToken cancel)
| Type | Name | Description |
|---|---|---|
| TSettings | settings | The typed settings to use for rendering. |
| StreamProvider | streams | The stream provider that supplies output streams. |
| IReport | report | The report to render. |
| CancellationToken | cancel | The CancellationToken that can be used to cancel the operation. |