oh dear
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Runtime.Serialization
|
||||
{
|
||||
/// <summary>Holds the value, <see cref="T:System.Type" />, and name of a serialized object.</summary>
|
||||
// Token: 0x0200045C RID: 1116
|
||||
[Token(Token = "0x200045C")]
|
||||
[ComVisible(true)]
|
||||
public struct SerializationEntry
|
||||
{
|
||||
/// <summary>Gets the value contained in the object.</summary>
|
||||
/// <returns>The value contained in the object.</returns>
|
||||
// Token: 0x17000536 RID: 1334
|
||||
// (get) Token: 0x06002553 RID: 9555 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x17000536")]
|
||||
public object Value
|
||||
{
|
||||
[Token(Token = "0x6002553")]
|
||||
[Address(RVA = "0x57C630", Offset = "0x57B430", VA = "0x18057C630")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the name of the object.</summary>
|
||||
/// <returns>The name of the object.</returns>
|
||||
// Token: 0x17000537 RID: 1335
|
||||
// (get) Token: 0x06002554 RID: 9556 RVA: 0x00002082 File Offset: 0x00000282
|
||||
[Token(Token = "0x17000537")]
|
||||
public string Name
|
||||
{
|
||||
[Token(Token = "0x6002554")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002555 RID: 9557 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6002555")]
|
||||
[Address(RVA = "0x299C850", Offset = "0x299B650", VA = "0x18299C850")]
|
||||
internal SerializationEntry(string entryName, object entryValue, Type entryType)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040014E1 RID: 5345
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x0")]
|
||||
[Token(Token = "0x40014E1")]
|
||||
private Type m_type;
|
||||
|
||||
// Token: 0x040014E2 RID: 5346
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x8")]
|
||||
[Token(Token = "0x40014E2")]
|
||||
private object m_value;
|
||||
|
||||
// Token: 0x040014E3 RID: 5347
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40014E3")]
|
||||
private string m_name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user