fyi, I figured it out:

FileStream stream = new FileStream(outfile, FileMode.Create);
customReport.Content.CopyTo(stream);
stream.Close();