Files
27Aug2021-Cpp2IL-Dump/Singular/Newtonsoft/Json/Serialization/JsonPropertyCollection.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

55 lines
1.7 KiB
C#

using System;
using System.Collections.ObjectModel;
using Cpp2IlInjected;
namespace Singular.Newtonsoft.Json.Serialization
{
// Token: 0x02000096 RID: 150
[Token(Token = "0x2000067")]
public class JsonPropertyCollection : KeyedCollection<string, JsonProperty>
{
// Token: 0x06000505 RID: 1285 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000471")]
[Address(RVA = "0x2C53090", Offset = "0x2C52090", VA = "0x182C53090")]
public JsonPropertyCollection(Type type)
{
}
// Token: 0x06000506 RID: 1286 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000472")]
[Address(RVA = "0x1286B00", Offset = "0x1285B00", VA = "0x181286B00", Slot = "39")]
protected override string GetKeyForItem(JsonProperty item)
{
return null;
}
// Token: 0x06000507 RID: 1287 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000473")]
[Address(RVA = "0x2C52D30", Offset = "0x2C51D30", VA = "0x182C52D30")]
public void AddProperty(JsonProperty property)
{
}
// Token: 0x06000508 RID: 1288 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000474")]
[Address(RVA = "0x2C52ED0", Offset = "0x2C51ED0", VA = "0x182C52ED0")]
public JsonProperty GetClosestMatchProperty(string propertyName)
{
return null;
}
// Token: 0x06000509 RID: 1289 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000475")]
[Address(RVA = "0x2C52F10", Offset = "0x2C51F10", VA = "0x182C52F10")]
public JsonProperty GetProperty(string propertyName, StringComparison comparisonType)
{
return null;
}
// Token: 0x040001DA RID: 474
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x4000150")]
private readonly Type _type;
}
}