Click or drag to resize
MimeKit

HtmlEntityDecoderPush Method

Push the specified character into the HTML entity decoder.

Namespace: MimeKit.Text
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
public bool Push(
	char c
)

Parameters

c  Char
The character.

Return Value

Boolean
true if the character was accepted; otherwise, false.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionc is the first character being pushed and was not the '&' character.
Remarks

Pushes the specified character into the HTML entity decoder.

The first character pushed MUST be the '&' character.

See Also