This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x06000673 RID: 1651 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C4")]
[Address(RVA = "0x2AEE9F0", Offset = "0x2AED9F0", VA = "0x182AEE9F0")]
public JsonSchemaWriter(JsonWriter writer, JsonSchemaResolver resolver)
{
}
// Token: 0x06000674 RID: 1652 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C5")]
[Address(RVA = "0x2AED040", Offset = "0x2AEC040", VA = "0x182AED040")]
private void ReferenceOrWriteSchema(JsonSchema schema)
{
}
// Token: 0x06000675 RID: 1653 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C6")]
[Address(RVA = "0x2AED600", Offset = "0x2AEC600", VA = "0x182AED600")]
public void WriteSchema(JsonSchema schema)
{
}
// Token: 0x06000676 RID: 1654 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C7")]
[Address(RVA = "0x2AED400", Offset = "0x2AEC400", VA = "0x182AED400")]
private void WriteSchemaDictionaryIfNotNull(JsonWriter writer, string propertyName, IDictionary<string, JsonSchema> properties)
{
}
// Token: 0x06000677 RID: 1655 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C8")]
[Address(RVA = "0x2AED140", Offset = "0x2AEC140", VA = "0x182AED140")]
private void WriteItems(JsonSchema schema)
{
}
// Token: 0x06000678 RID: 1656 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005C9")]
[Address(RVA = "0x2AEE5A0", Offset = "0x2AED5A0", VA = "0x182AEE5A0")]
private void WriteType(string propertyName, JsonWriter writer, JsonSchemaType type)
{
}
// Token: 0x06000679 RID: 1657 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60005CA")]
[Address(RVA = "0x2AED3A0", Offset = "0x2AEC3A0", VA = "0x182AED3A0")]
private void WritePropertyIfNotNull(JsonWriter writer, string propertyName, object value)
{
}
// Token: 0x0400027E RID: 638
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40001DE")]
private readonly JsonWriter _writer;
// Token: 0x0400027F RID: 639
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40001DF")]
private readonly JsonSchemaResolver _resolver;
}
}