[]
Renders the specified report to the provided stream using default settings.
public void Render(IReport report, StreamProvider streams)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | The stream provider that supplies output streams. |
Renders the specified report to the provided stream using the given settings collection.
public void Render(IReport report, StreamProvider streams, NameValueCollection settings)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | The stream provider that supplies output streams. |
| NameValueCollection | settings | A name/value collection of rendering settings. |
Renders the specified report to the provided stream using the given settings collection and cancellation support.
public void Render(IReport report, StreamProvider streams, NameValueCollection settings, CancellationToken cancel)
| Type | Name | Description |
|---|---|---|
| IReport | report | The report to render. |
| StreamProvider | streams | The stream provider that supplies output streams. |
| NameValueCollection | settings | A name/value collection of rendering settings. |
| CancellationToken | cancel | The CancellationToken that can be used to cancel the operation. |