DecoderExceptionFallback.CreateFallbackBuffer Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a decoder fallback buffer that throws an exception if it cannot convert a sequence of bytes to a character.
public:
override System::Text::DecoderFallbackBuffer ^ CreateFallbackBuffer();
public override System.Text.DecoderFallbackBuffer CreateFallbackBuffer ();
override this.CreateFallbackBuffer : unit -> System.Text.DecoderFallbackBuffer
Public Overrides Function CreateFallbackBuffer () As DecoderFallbackBuffer
Returns
A decoder fallback buffer that throws an exception when it cannot decode a byte sequence.
Remarks
A decoder fallback buffer is responsible for receiving and handling byte sequences that a decoder cannot convert to characters. This method returns an instance of the DecoderExceptionFallbackBuffer class, which is a subclass of the DecoderFallbackBuffer class. A DecoderExceptionFallbackBuffer object throws an DecoderFallbackException exception whenever a sequence of bytes is passed to its Fallback method.