Export(IDocumentExport,Stream) Method
Exports the specified page range of the currently loaded report to the specified stream by using the specified export filter.
An example of export report to pdf file:
using (var stream = new MemoryStream())
{
var pdfExport = new PdfExport();
viewer.Export(pdfExport, stream);
// Use the stream containing the exported report
}