EncoderReplacementFallbackBuffer
Class
Definition
Represents a substitute input string that is used when the original input character cannot be encoded. This class cannot be inherited.
public sealed class EncoderReplacementFallbackBuffer : System.Text.EncoderFallbackBuffer
- Inheritance
Inherited Members
System.Object
Remarks
It might not be possible to convert a character to an equivalent encoded byte sequence if no suitable encoding exists. A common reason for an encoding to fail is if the conversion operation uses a code page that cannot represent the character to encode.
If the input character cannot be converted to an output byte sequence, a EncoderReplacementFallback object provides a replacement string that is substituted for the original input character. The replacement string initializes the value of the EncoderReplacementFallback object, and the value of the EncoderReplacementFallback object initializes the value of an EncoderReplacementFallbackBuffer object. The value of an EncoderReplacementFallbackBuffer object is called the replacement fallback buffer. The conversion operation encodes the replacement fallback buffer instead of the original input character, then continues to process the remainder of the input.
Constructors
| EncoderReplacementFallbackBuffer(EncoderReplacementFallback) |
Initializes a new instance of the EncoderReplacementFallbackBuffer class using the value of a EncoderReplacementFallback object. |
Properties
| Remaining |
Gets the number of characters in the replacement fallback buffer that remain to be processed. |
Methods
| Fallback(Char, Int32) |
Prepares the replacement fallback buffer to use the current replacement string. |
| Fallback(Char, Char, Int32) |
Indicates whether a replacement string can be used when an input surrogate pair cannot be encoded, or whether the surrogate pair can be ignored. Parameters specify the surrogate pair and the index position of the pair in the input. |
| GetNextChar() |
Retrieves the next character in the replacement fallback buffer. |
| MovePrevious() |
Causes the next call to the GetNextChar() method to access the character position in the replacement fallback buffer prior to the current character position. |
| Reset() |
Initializes all internal state information and data in this instance of EncoderReplacementFallbackBuffer. |