DecoderFallbackBuffer.GetNextChar Method

Definition

When overridden in a derived class, retrieves the next character in the fallback buffer.

public:
 abstract char GetNextChar();
public abstract char GetNextChar ();
abstract member GetNextChar : unit -> char
Public MustOverride Function GetNextChar () As Char

Returns

The next character in the fallback buffer.

Remarks

A decoding operation calls the Fallback method if the operation encounters an unknown byte sequence in the input. If the Fallback method returns true, a substitute string exists that can be inserted in the output instead of decoding the unknown input. The decoding operation calls the GetNextChar method repeatedly and obtains the substitute string one character at a time. When all characters in the fallback buffer have been returned to the decoder, the method should return U+0000.

For an exception fallback handler, the GetNextChar method should return U+0000.

Applies to