HtmlReader constructor (Stream, Encoding)
The HtmlReader(Stream, Encoding) constructor initializes a new instance of the HtmlReader class that reads data from the specified data stream using the specified encoding.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Sub New ( _
input As Stream, _
inputEncoding As Encoding _
)
'Usage
Dim input As Stream
Dim inputEncoding As Encoding
Dim instance As New HtmlReader(input, inputEncoding)
public HtmlReader(
Stream input,
Encoding inputEncoding
)
Parameters
input
Type: System.IO.StreamThe [System.IO.Stream] object that contains the HTML document.
- inputEncoding
Type: System.Text.Encoding
Remarks
The [System.Text.Encoding] object that specifies the default character set of the incoming HTML data.