58 lines
1.5 KiB
C#
58 lines
1.5 KiB
C#
using System;
|
|
using System.Reflection;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Newtonsoft.Json.Linq
|
|
{
|
|
// Token: 0x020000AA RID: 170
|
|
[Token(Token = "0x20000AA")]
|
|
[DefaultMember("Item")]
|
|
public abstract class JToken
|
|
{
|
|
// Token: 0x0600042C RID: 1068
|
|
[Token(Token = "0x600042C")]
|
|
[Address(Slot = "4")]
|
|
public abstract void WriteTo(JsonWriter writer, params JsonConverter[] converters);
|
|
|
|
// Token: 0x04000260 RID: 608
|
|
[Token(Token = "0x4000260")]
|
|
private static readonly JTokenType[] BooleanTypes;
|
|
|
|
// Token: 0x04000261 RID: 609
|
|
[Token(Token = "0x4000261")]
|
|
private static readonly JTokenType[] NumberTypes;
|
|
|
|
// Token: 0x04000262 RID: 610
|
|
[Token(Token = "0x4000262")]
|
|
private static readonly JTokenType[] BigIntegerTypes;
|
|
|
|
// Token: 0x04000263 RID: 611
|
|
[Token(Token = "0x4000263")]
|
|
private static readonly JTokenType[] StringTypes;
|
|
|
|
// Token: 0x04000264 RID: 612
|
|
[Token(Token = "0x4000264")]
|
|
private static readonly JTokenType[] GuidTypes;
|
|
|
|
// Token: 0x04000265 RID: 613
|
|
[Token(Token = "0x4000265")]
|
|
private static readonly JTokenType[] TimeSpanTypes;
|
|
|
|
// Token: 0x04000266 RID: 614
|
|
[Token(Token = "0x4000266")]
|
|
private static readonly JTokenType[] UriTypes;
|
|
|
|
// Token: 0x04000267 RID: 615
|
|
[Token(Token = "0x4000267")]
|
|
private static readonly JTokenType[] CharTypes;
|
|
|
|
// Token: 0x04000268 RID: 616
|
|
[Token(Token = "0x4000268")]
|
|
private static readonly JTokenType[] DateTimeTypes;
|
|
|
|
// Token: 0x04000269 RID: 617
|
|
[Token(Token = "0x4000269")]
|
|
private static readonly JTokenType[] BytesTypes;
|
|
}
|
|
}
|