Return the final report. In the case of the ProcessReport(template) constructor, this is gauranteed to be of type MemoryStream. If an output stream was passed in on construction, this will return that stream. This can only be called after process() or processData(). For a ReportHtml with split pages enabled, the Pages property should be accessed instead.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Function GetReport() As Stream  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As Report
Dim value As Stream
 
value = instance.GetReport()  | 
 
| Managed Extensions for C++ |   | 
|---|
public: Stream* GetReport();   | 
 
| C++/CLI |   | 
|---|
public:
Stream^ GetReport();   | 
 
            
            
            Return Value
The report as a stream.
 
            
Exceptions
| Exception | Description | 
| net.windward.xmlreport.AlreadyProcessedException | thrown if call process multiple times on an object. | 
 
						
            
            
            
            
            
            
            Requirements
Platforms: Windows 10, Windows NT, Windows Server
            
            
See Also