EncoderExceptionFallbackBuffer.Remaining 属性

定义

获取当前 EncoderExceptionFallbackBuffer 对象中待处理的字符数。Gets the number of characters in the current EncoderExceptionFallbackBuffer object that remain to be processed.

public:
 virtual property int Remaining { int get(); };
public override int Remaining { get; }
member this.Remaining : int
Public Overrides ReadOnly Property Remaining As Integer

属性值

Int32

返回值始终为零。The return value is always zero.

即使返回值是不变的,也仍会定义一个返回值,原因是此方法会实现一个抽象方法。A return value is defined, although it is unchanging, because this method implements an abstract method.

注解

由于 EncoderExceptionFallbackBuffer 没有实际的异常数据缓冲区,因此 Remaining 属性始终返回零。Because EncoderExceptionFallbackBuffer has no actual exception data buffer, the Remaining property always returns zero.

适用于