Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DecoderFallbackBuffer::GetNextChar Method ()

 

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

Namespace:   System.Text
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual wchar_t GetNextChar() abstract

Return Value

Type: System::Char

The next character in the fallback buffer.

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.

Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft