SetInputStream Method
The input stream to read from when calling ConvertXML or ConvertACH .
Syntax
[VB.NET] Public Sub SetInputStream(ByVal InputStream As System.IO.Stream)
[C#] public void SetInputStream(System.IO.Stream inputStream);
Remarks
This property should contain the stream ConvertXML or ConvertACH will read from. If you do not wish to use a stream, you may specify an InputFile, or simply set the data in memory in the InputString property. If multiple inputs are specified, the source used will be selected in the following priority: SetInputStream, InputFile, and then InputString.
NOTE: This method has a corresponding asynchronous version (SetInputStreamAsync) for use in the Xamarin environment.