HtmlReader.ReadMarkupText method
The ReadMarkupText([], Int32, Int32) method reads an HTML tag without parsing the internal text to HTML tokens.
Namespace: Microsoft.Exchange.Data.TextConverters
Assembly: Microsoft.Exchange.Data.Common (in Microsoft.Exchange.Data.Common.dll)
Syntax
'Declaration
Public Function ReadMarkupText ( _
buffer As Char(), _
offset As Integer, _
count As Integer _
) As Integer
'Usage
Dim instance As HtmlReader
Dim buffer As Char()
Dim offset As Integer
Dim count As Integer
Dim returnValue As Integer
returnValue = instance.ReadMarkupText(buffer, _
offset, count)
public int ReadMarkupText(
char[] buffer,
int offset,
int count
)
Parameters
buffer
Type: []The character array that will receive the incoming characters.
offset
Type: System.Int32The starting location in the input data to start reading.
count
Type: System.Int32The number of characters to read from the input stream.
Return value
Type: System.Int32
The ReadMarkupText([], Int32, Int32) method returns the number of characters successfully read from the input stream.