System.Text.DecoderFallbackBuffer.Reset C# (CSharp) Method

Reset() public method

public Reset ( ) : void
return void
        public virtual void Reset()
        {
            while (GetNextChar() != (char)0);
        }

Usage Example

示例#1
0
 // Reset the Decoder
 //
 // Normally if we call GetChars() and an error is thrown we don't change the state of the Decoder.  This
 // would allow the caller to correct the error condition and try again (such as if they need a bigger buffer.)
 //
 // If the caller doesn't want to try again after GetChars() throws an error, then they need to call Reset().
 //
 // Virtual implementation has to call GetChars with flush and a big enough buffer to clear a 0 byte string
 // We avoid GetMaxCharCount() because a) we can't call the base encoder and b) it might be really big.
 public virtual void Reset()
 {
     byte[] byteTemp = Array.Empty <byte>();
     char[] charTemp = new char[GetCharCount(byteTemp, 0, 0, true)];
     GetChars(byteTemp, 0, 0, charTemp, 0, true);
     _fallbackBuffer?.Reset();
 }
All Usage Examples Of System.Text.DecoderFallbackBuffer::Reset