oh dear
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Text
|
||||
{
|
||||
/// <summary>Provides a failure-handling mechanism, called a fallback, for an input character that cannot be converted to an output byte sequence. The fallback throws an exception if an input character cannot be converted to an output byte sequence. This class cannot be inherited.</summary>
|
||||
// Token: 0x020001CB RID: 459
|
||||
[Token(Token = "0x20001CB")]
|
||||
[Serializable]
|
||||
public sealed class EncoderExceptionFallback : EncoderFallback
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Text.EncoderExceptionFallback" /> class.</summary>
|
||||
// Token: 0x06001151 RID: 4433 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001151")]
|
||||
[Address(RVA = "0x3F5100", Offset = "0x3F3F00", VA = "0x1803F5100")]
|
||||
public EncoderExceptionFallback()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Returns an encoder fallback buffer that throws an exception if it cannot convert a character sequence to a byte sequence.</summary>
|
||||
/// <returns>An encoder fallback buffer that throws an exception when it cannot encode a character sequence.</returns>
|
||||
// Token: 0x06001152 RID: 4434 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x6001152")]
|
||||
[Address(RVA = "0x2F1AD50", Offset = "0x2F19B50", VA = "0x182F1AD50", Slot = "4")]
|
||||
public override EncoderFallbackBuffer CreateFallbackBuffer()
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
/// <summary>Gets the maximum number of characters this instance can return.</summary>
|
||||
/// <returns>The return value is always zero.</returns>
|
||||
// Token: 0x170001AF RID: 431
|
||||
// (get) Token: 0x06001153 RID: 4435 RVA: 0x0000D998 File Offset: 0x0000BB98
|
||||
[Token(Token = "0x170001AF")]
|
||||
public override int MaxCharCount
|
||||
{
|
||||
[Token(Token = "0x6001153")]
|
||||
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Indicates whether the current <see cref="T:System.Text.EncoderExceptionFallback" /> object and a specified object are equal.</summary>
|
||||
/// <param name="value">An object that derives from the <see cref="T:System.Text.EncoderExceptionFallback" /> class.</param>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if <paramref name="value" /> is not <see langword="null" /> (<see langword="Nothing" /> in Visual Basic .NET) and is a <see cref="T:System.Text.EncoderExceptionFallback" /> object; otherwise, <see langword="false" />.</returns>
|
||||
// Token: 0x06001154 RID: 4436 RVA: 0x0000D9B0 File Offset: 0x0000BBB0
|
||||
[Token(Token = "0x6001154")]
|
||||
[Address(RVA = "0x2F1ADA0", Offset = "0x2F19BA0", VA = "0x182F1ADA0", Slot = "0")]
|
||||
public override bool Equals(object value)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>Retrieves the hash code for this instance.</summary>
|
||||
/// <returns>The return value is always the same arbitrary value, and has no special significance.</returns>
|
||||
// Token: 0x06001155 RID: 4437 RVA: 0x0000D9C8 File Offset: 0x0000BBC8
|
||||
[Token(Token = "0x6001155")]
|
||||
[Address(RVA = "0x2F1ADF0", Offset = "0x2F19BF0", VA = "0x182F1ADF0", Slot = "2")]
|
||||
public override int GetHashCode()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user