SaveReport(XmlWriter) Method
Saves a report XML layout to the specified writer.
The following example demonstrates how to use an XmlWriter to save a report:
using (var stream = new FileStream("path/to/your/report.rdlx", FileMode.Create))
using (var writer = XmlWriter.Create(stream))
{
designer.SaveReport(writer);
}