class EncoderExceptionFallbackBuffer

in global :: System . Text

Throws when an input character cannot be converted to an encoded output byte sequence. This class cannot be inherited.


public bool Fallback( char charUnknownHigh, char charUnknownLow, int index )

Throws an exception because the input character cannot be encoded. Parameters specify the value and index position of the surrogate pair in the input, and the nominal return value is not used.

  • charUnknownHigh The high surrogate of the input pair.
  • charUnknownLow The low surrogate of the input pair.
  • index The index position of the surrogate pair in the input buffer.
  • Returns None. No value is returned because the method always throws an exception.

public bool Fallback( char charUnknown, int index )

Throws an exception because the input character cannot be encoded. Parameters specify the value and index position of the character that cannot be converted.

  • charUnknown An input character.
  • index The index position of the character in the input buffer.
  • Returns None. No value is returned because the method always throws an exception.

public int Remaining { get; }

Gets the number of characters in the current object that remain to be processed.

  • Returns The return value is always zero. A return value is defined, although it is unchanging, because this method implements an abstract method.

public char GetNextChar( )

😔 No documentation found.

public bool MovePrevious( )

😔 No documentation found.

public void Reset( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public EncoderExceptionFallbackBuffer( )

😔 No documentation found.