69 lines
2.1 KiB
C#
69 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace Valve.Newtonsoft.Json.Serialization
|
|
{
|
|
// Token: 0x02000091 RID: 145
|
|
[Token(Token = "0x2000091")]
|
|
public class JsonPropertyCollection : KeyedCollection<string, JsonProperty>
|
|
{
|
|
// Token: 0x0600044D RID: 1101 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600044D")]
|
|
[Address(RVA = "0x27C0C60", Offset = "0x27BFA60", VA = "0x1827C0C60")]
|
|
public JsonPropertyCollection(Type type)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0600044E RID: 1102 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600044E")]
|
|
[Address(RVA = "0x901BC0", Offset = "0x9009C0", VA = "0x180901BC0", Slot = "39")]
|
|
protected override string GetKeyForItem(JsonProperty item)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x0600044F RID: 1103 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600044F")]
|
|
[Address(RVA = "0x27C0790", Offset = "0x27BF590", VA = "0x1827C0790")]
|
|
public void AddProperty(JsonProperty property)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000450 RID: 1104 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000450")]
|
|
[Address(RVA = "0x27C09B0", Offset = "0x27BF7B0", VA = "0x1827C09B0")]
|
|
public JsonProperty GetClosestMatchProperty(string propertyName)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x06000451 RID: 1105 RVA: 0x00003BB8 File Offset: 0x00001DB8
|
|
[Token(Token = "0x6000451")]
|
|
[Address(RVA = "0x27C0B80", Offset = "0x27BF980", VA = "0x1827C0B80")]
|
|
private bool TryGetValue(string key, out JsonProperty item)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x06000452 RID: 1106 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000452")]
|
|
[Address(RVA = "0x27C09F0", Offset = "0x27BF7F0", VA = "0x1827C09F0")]
|
|
public JsonProperty GetProperty(string propertyName, StringComparison comparisonType)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x04000273 RID: 627
|
|
[FieldOffset(Offset = "0x38")]
|
|
[Token(Token = "0x4000273")]
|
|
private readonly Type _type;
|
|
|
|
// Token: 0x04000274 RID: 628
|
|
[FieldOffset(Offset = "0x40")]
|
|
[Token(Token = "0x4000274")]
|
|
private readonly List<JsonProperty> _list;
|
|
}
|
|
}
|