using System;
namespace System.Text
{
/// Throws a if an input character cannot be converted to an encoded output byte sequence. This class cannot be inherited.
/// 2
// Token: 0x020005EA RID: 1514
[Serializable]
public sealed class EncoderExceptionFallback : EncoderFallback
{
/// Gets the maximum number of characters this instance can return.
/// The return value is always zero.
/// 2
// Token: 0x17000AC5 RID: 2757
// (get) Token: 0x06003717 RID: 14103 RVA: 0x000BCD20 File Offset: 0x000BAF20
public override int MaxCharCount
{
get
{
return 0;
}
}
/// Initializes a new instance of the class.
/// A object.
/// 2
// Token: 0x06003718 RID: 14104 RVA: 0x000BCD24 File Offset: 0x000BAF24
public override EncoderFallbackBuffer CreateFallbackBuffer()
{
return new EncoderExceptionFallbackBuffer();
}
/// Indicates whether the current object and a specified object are equal.
/// true if is not null (Nothing in Visual Basic .NET) and is a object; otherwise, false.
/// An object that derives from the class.
/// 2
// Token: 0x06003719 RID: 14105 RVA: 0x000BCD2C File Offset: 0x000BAF2C
public override bool Equals(object value)
{
return value is EncoderExceptionFallback;
}
/// Retrieves the hash code for this instance.
/// The return value is always the same arbitrary value, and has no special significance.
/// 2
// Token: 0x0600371A RID: 14106 RVA: 0x000BCD38 File Offset: 0x000BAF38
public override int GetHashCode()
{
return 0;
}
}
}