Provides a buffer that allows a fallback handler to return an alternate string to a decoder when it cannot decode an input byte sequence.
See Also: DecoderFallbackBuffer Members
An encoding defines a mapping between a Unicode character and an encoded sequence of bytes. A decoding operation, which converts an input byte sequence to an output character, fails if no mapping is defined for a particular byte sequence.
The .NET Framework provides a failure handling mechanism, called a fallback, if a conversion cannot be performed. All decoder fallback handlers must implement the following:
A decoder fallback, which is represented by a class derived from the System.Text.DecoderFallback class.
A decoder fallback buffer, which is represented by a type derived from the System.Text.DecoderFallbackBuffer class that can return a string to the conversion operation.
Fallbacks can use three strategies to handle conversion failures:
Best-fit mapping. The decoder fallback buffer can return a string that represents a close approximation to the input byte sequence. The .NET Framework does not provide a public best-fit System.Text.DecoderFallbackBuffer implementation.
Replacement. The decoder fallback buffer can return a string, such as a question mark ("?"), that indicates that a byte sequence could not be decoded. In the .NET Framework, the System.Text.DecoderReplacementFallback and System.Text.DecoderReplacementFallbackBuffer classes provide a public replacement fallback buffer implementation. The constructor of the System.Text.DecoderReplacementFallback class enables you to define the replacement string.
Exception. The System.Text.DecoderFallbackBuffer implementation throws an exception, which indicates that a byte sequence cannot be decoded, and terminates the decoding operation. In this case, the fallback handler must provide a System.Text.DecoderFallbackBuffer implementation, although it does not return a string to the decoder. In the .NET Framework, the System.Text.DecoderExceptionFallback and System.Text.DecoderExceptionFallbackBuffer classes provide a public exception fallback implementation that throws a System.Text.DecoderFallbackException when a byte sequence cannot be decoded.
The buffer in a System.Text.DecoderFallbackBuffer implementation represents the entire string to be returned to the decoder in response to a decoder fallback. Generally, implementations also include state information, such as the index of the next character to return to the decoder and the number of remaining characters to be returned. Because System.Text.DecoderFallbackBuffer is an abstract class, it requires derived classes to implement the following members at a minimum:
The DecoderFallbackBuffer.Fallback(Byte[], int) method, which is called by the decoder when it cannot decode a byte sequence. The decoder passes two pieces of information to the fallback buffer implementation: an array containing the bytes that could not be decoded and the index of the first byte in the input byte array. In a decoder fallback exception handler, the exception is thrown in this method. Otherwise, the method returns true if it provides a fallback, or false if it does not.
The DecoderFallbackBuffer.GetNextChar method, which is called repeatedly by the decoder if the DecoderFallbackBuffer.Fallback(Byte[], int) method returns true. In successive calls, the handler should return each character in its buffer. When it has returned all characters, it should return U+0000. An exception fallback handler always returns U+0000.
The DecoderFallbackBuffer.MovePrevious method, which tries to move the pointer to the previous position in the buffer and indicates whether the move was successful. An exception handler always returns false.
The DecoderFallbackBuffer.Remaining property, which indicates the number of remaining characters to be returned to the decoder. An exception fallback handler always returns zero.