SetOutputStream Method
The output stream to write to when calling ConvertXML or ConvertACH .
Syntax
[VB.NET] Public Sub SetOutputStream(ByVal OutputStream As System.IO.Stream)
[C#] public void SetOutputStream(System.IO.Stream outputStream);
Remarks
This property should contain the stream you wish the output from ConvertXML or ConvertACH to be written to. If you do not wish to use a stream, you may specify a OutputFile, or simply retrieve the data in memory from the OutputString property. If SetOutputStream and OutputFile are both specified, SetOutputStream takes precedence. OutputString will only be filled if both SetOutputStream and OutputFile are empty.
NOTE: This method has a corresponding asynchronous version (SetOutputStreamAsync) for use in the Xamarin environment.