System::Text::EncoderExceptionFallbackBuffer::Fallback method

EncoderExceptionFallbackBuffer::Fallback(char_t, int) method

Handles encoding failure.

virtual bool System::Text::EncoderExceptionFallbackBuffer::Fallback(char_t charUnknown, int index) override
ParameterTypeDescription
charUnknownchar_tUnknown characters; ignored.
indexintUnknown characters offset; ignored.

ReturnValue

Never actually returns, throws instead.

See Also

EncoderExceptionFallbackBuffer::Fallback(char_t, char_t, int) method

Handles encoding failure.

virtual bool System::Text::EncoderExceptionFallbackBuffer::Fallback(char_t charUnknownHigh, char_t charUnknownLow, int index) override
ParameterTypeDescription
charUnknownHighchar_tHigh part of surrogate pair that triggered error.
charUnknownLowchar_tLow part of surrogate pair that triggered error.
indexintUnknown character offset; ignored.

ReturnValue

Never actually returns, throws instead.

See Also