This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,70 @@
using System;
using System.Collections.Generic;
using Cpp2IlInjected;
namespace Singular.Newtonsoft.Json.Schema
{
// Token: 0x020000B6 RID: 182
[Token(Token = "0x200007E")]
internal class JsonSchemaWriter
{
// Token: 0x06000671 RID: 1649 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C2")]
[Address(RVA = "0x22BA200", Offset = "0x22B9000", VA = "0x1822BA200")]
public JsonSchemaWriter(JsonWriter writer, JsonSchemaResolver resolver)
{
}
// Token: 0x06000672 RID: 1650 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C3")]
[Address(RVA = "0x22B8850", Offset = "0x22B7650", VA = "0x1822B8850")]
private void ReferenceOrWriteSchema(JsonSchema schema)
{
}
// Token: 0x06000673 RID: 1651 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C4")]
[Address(RVA = "0x22B8E10", Offset = "0x22B7C10", VA = "0x1822B8E10")]
public void WriteSchema(JsonSchema schema)
{
}
// Token: 0x06000674 RID: 1652 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C5")]
[Address(RVA = "0x22B8C10", Offset = "0x22B7A10", VA = "0x1822B8C10")]
private void WriteSchemaDictionaryIfNotNull(JsonWriter writer, string propertyName, IDictionary<string, JsonSchema> properties)
{
}
// Token: 0x06000675 RID: 1653 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C6")]
[Address(RVA = "0x22B8950", Offset = "0x22B7750", VA = "0x1822B8950")]
private void WriteItems(JsonSchema schema)
{
}
// Token: 0x06000676 RID: 1654 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C7")]
[Address(RVA = "0x22B9DB0", Offset = "0x22B8BB0", VA = "0x1822B9DB0")]
private void WriteType(string propertyName, JsonWriter writer, JsonSchemaType type)
{
}
// Token: 0x06000677 RID: 1655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C8")]
[Address(RVA = "0x22B8BB0", Offset = "0x22B79B0", VA = "0x1822B8BB0")]
private void WritePropertyIfNotNull(JsonWriter writer, string propertyName, object value)
{
}
// Token: 0x0400027D RID: 637
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40001DD")]
private readonly JsonWriter _writer;
// Token: 0x0400027E RID: 638
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40001DE")]
private readonly JsonSchemaResolver _resolver;
}
}