This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,76 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Metadata
{
/// <summary>Provides default functionality for all SOAP attributes.</summary>
// Token: 0x020004F3 RID: 1267
[Token(Token = "0x20004F3")]
[ComVisible(true)]
public class SoapAttribute : Attribute
{
/// <summary>Creates an instance of <see cref="T:System.Runtime.Remoting.Metadata.SoapAttribute" />.</summary>
// Token: 0x0600289E RID: 10398 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600289E")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SoapAttribute()
{
}
/// <summary>Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field.</summary>
/// <returns>
/// <see langword="true" /> if the target object of the current attribute must be serialized as an XML attribute; <see langword="false" /> if the target object must be serialized as a subelement.</returns>
// Token: 0x170005B0 RID: 1456
// (get) Token: 0x0600289F RID: 10399 RVA: 0x00016440 File Offset: 0x00014640
[Token(Token = "0x170005B0")]
public virtual bool UseAttribute
{
[Token(Token = "0x600289F")]
[Address(RVA = "0x42D5E0", Offset = "0x42C3E0", VA = "0x18042D5E0", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the XML namespace name.</summary>
/// <returns>The XML namespace name under which the target of the current attribute is serialized.</returns>
// Token: 0x170005B1 RID: 1457
// (get) Token: 0x060028A0 RID: 10400 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B1")]
public virtual string XmlNamespace
{
[Token(Token = "0x60028A0")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "8")]
get
{
return null;
}
}
// Token: 0x060028A1 RID: 10401 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028A1")]
[Address(RVA = "0x460F90", Offset = "0x45FD90", VA = "0x180460F90", Slot = "9")]
internal virtual void SetReflectionObject(object reflectionObject)
{
}
// Token: 0x040017B2 RID: 6066
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40017B2")]
private bool _useAttribute;
/// <summary>The XML namespace to which the target of the current SOAP attribute is serialized.</summary>
// Token: 0x040017B3 RID: 6067
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40017B3")]
protected string ProtXmlNamespace;
/// <summary>A reflection object used by attribute classes derived from the <see cref="T:System.Runtime.Remoting.Metadata.SoapAttribute" /> class to set XML serialization information.</summary>
// Token: 0x040017B4 RID: 6068
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x40017B4")]
protected object ReflectInfo;
}
}
@@ -0,0 +1,65 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Metadata
{
/// <summary>Customizes SOAP generation and processing for a field. This class cannot be inherited.</summary>
// Token: 0x020004F4 RID: 1268
[Token(Token = "0x20004F4")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Field)]
public sealed class SoapFieldAttribute : SoapAttribute
{
/// <summary>Creates an instance of <see cref="T:System.Runtime.Remoting.Metadata.SoapFieldAttribute" /> class.</summary>
// Token: 0x060028A2 RID: 10402 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028A2")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SoapFieldAttribute()
{
}
/// <summary>Gets or sets the XML element name of the field contained in the <see cref="T:System.Runtime.Remoting.Metadata.SoapFieldAttribute" /> attribute.</summary>
/// <returns>The XML element name of the field contained in this attribute.</returns>
// Token: 0x170005B2 RID: 1458
// (get) Token: 0x060028A3 RID: 10403 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B2")]
public string XmlElementName
{
[Token(Token = "0x60028A3")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
get
{
return null;
}
}
/// <summary>Returns a value indicating whether the current attribute contains interop XML element values.</summary>
/// <returns>
/// <see langword="true" /> if the current attribute contains interop XML element values; otherwise, <see langword="false" />.</returns>
// Token: 0x060028A4 RID: 10404 RVA: 0x00016458 File Offset: 0x00014658
[Token(Token = "0x60028A4")]
[Address(RVA = "0x4364F0", Offset = "0x4352F0", VA = "0x1804364F0")]
public bool IsInteropXmlElement()
{
return default(bool);
}
// Token: 0x060028A5 RID: 10405 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028A5")]
[Address(RVA = "0x25C9510", Offset = "0x25C8310", VA = "0x1825C9510", Slot = "9")]
internal override void SetReflectionObject(object reflectionObject)
{
}
// Token: 0x040017B5 RID: 6069
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40017B5")]
private string _elementName;
// Token: 0x040017B6 RID: 6070
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x40017B6")]
private bool _isElement;
}
}
@@ -0,0 +1,90 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Metadata
{
/// <summary>Customizes SOAP generation and processing for a method. This class cannot be inherited.</summary>
// Token: 0x020004F5 RID: 1269
[Token(Token = "0x20004F5")]
[ComVisible(true)]
[AttributeUsage(AttributeTargets.Method)]
public sealed class SoapMethodAttribute : SoapAttribute
{
/// <summary>Creates an instance of <see cref="T:System.Runtime.Remoting.Metadata.SoapMethodAttribute" />.</summary>
// Token: 0x060028A6 RID: 10406 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028A6")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SoapMethodAttribute()
{
}
/// <summary>Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field.</summary>
/// <returns>The current implementation always returns <see langword="false" />.</returns>
/// <exception cref="T:System.Runtime.Remoting.RemotingException">An attempt was made to set the current property.</exception>
// Token: 0x170005B3 RID: 1459
// (get) Token: 0x060028A7 RID: 10407 RVA: 0x00016470 File Offset: 0x00014670
[Token(Token = "0x170005B3")]
public override bool UseAttribute
{
[Token(Token = "0x60028A7")]
[Address(RVA = "0x4C2F40", Offset = "0x4C1D40", VA = "0x1804C2F40", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the XML namespace that is used during serialization of remote method calls of the target method.</summary>
/// <returns>The XML namespace that is used during serialization of remote method calls of the target method.</returns>
// Token: 0x170005B4 RID: 1460
// (get) Token: 0x060028A8 RID: 10408 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B4")]
public override string XmlNamespace
{
[Token(Token = "0x60028A8")]
[Address(RVA = "0x415290", Offset = "0x414090", VA = "0x180415290", Slot = "8")]
get
{
return null;
}
}
// Token: 0x060028A9 RID: 10409 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028A9")]
[Address(RVA = "0x25C95C0", Offset = "0x25C83C0", VA = "0x1825C95C0", Slot = "9")]
internal override void SetReflectionObject(object reflectionObject)
{
}
// Token: 0x040017B7 RID: 6071
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40017B7")]
private string _responseElement;
// Token: 0x040017B8 RID: 6072
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x40017B8")]
private string _responseNamespace;
// Token: 0x040017B9 RID: 6073
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
[Token(Token = "0x40017B9")]
private string _returnElement;
// Token: 0x040017BA RID: 6074
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
[Token(Token = "0x40017BA")]
private string _soapAction;
// Token: 0x040017BB RID: 6075
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
[Token(Token = "0x40017BB")]
private bool _useAttribute;
// Token: 0x040017BC RID: 6076
[global::Cpp2IlInjected.FieldOffset(Offset = "0x50")]
[Token(Token = "0x40017BC")]
private string _namespace;
}
}
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Metadata
{
/// <summary>Customizes SOAP generation and processing for a parameter. This class cannot be inherited.</summary>
// Token: 0x020004F6 RID: 1270
[Token(Token = "0x20004F6")]
[AttributeUsage(AttributeTargets.Parameter)]
[ComVisible(true)]
public sealed class SoapParameterAttribute : SoapAttribute
{
/// <summary>Creates an instance of <see cref="T:System.Runtime.Remoting.Metadata.SoapParameterAttribute" />.</summary>
// Token: 0x060028AA RID: 10410 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028AA")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SoapParameterAttribute()
{
}
}
}
@@ -0,0 +1,166 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Metadata
{
/// <summary>Customizes SOAP generation and processing for target types. This class cannot be inherited.</summary>
// Token: 0x020004F7 RID: 1271
[Token(Token = "0x20004F7")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface)]
[ComVisible(true)]
public sealed class SoapTypeAttribute : SoapAttribute
{
/// <summary>Creates an instance of <see cref="T:System.Runtime.Remoting.Metadata.SoapTypeAttribute" />.</summary>
// Token: 0x060028AB RID: 10411 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028AB")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public SoapTypeAttribute()
{
}
/// <summary>Gets or sets a value indicating whether the target of the current attribute will be serialized as an XML attribute instead of an XML field.</summary>
/// <returns>The current implementation always returns <see langword="false" />.</returns>
/// <exception cref="T:System.Runtime.Remoting.RemotingException">An attempt was made to set the current property.</exception>
// Token: 0x170005B5 RID: 1461
// (get) Token: 0x060028AC RID: 10412 RVA: 0x00016488 File Offset: 0x00014688
[Token(Token = "0x170005B5")]
public override bool UseAttribute
{
[Token(Token = "0x60028AC")]
[Address(RVA = "0x494270", Offset = "0x493070", VA = "0x180494270", Slot = "7")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the XML element name.</summary>
/// <returns>The XML element name.</returns>
// Token: 0x170005B6 RID: 1462
// (get) Token: 0x060028AD RID: 10413 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B6")]
public string XmlElementName
{
[Token(Token = "0x60028AD")]
[Address(RVA = "0x3FA180", Offset = "0x3F8F80", VA = "0x1803FA180")]
get
{
return null;
}
}
/// <summary>Gets or sets the XML namespace that is used during serialization of the target object type.</summary>
/// <returns>The XML namespace that is used during serialization of the target object type.</returns>
// Token: 0x170005B7 RID: 1463
// (get) Token: 0x060028AE RID: 10414 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B7")]
public override string XmlNamespace
{
[Token(Token = "0x60028AE")]
[Address(RVA = "0x3F63D0", Offset = "0x3F51D0", VA = "0x1803F63D0", Slot = "8")]
get
{
return null;
}
}
/// <summary>Gets or sets the XML type name for the target object type.</summary>
/// <returns>The XML type name for the target object type.</returns>
// Token: 0x170005B8 RID: 1464
// (get) Token: 0x060028AF RID: 10415 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B8")]
public string XmlTypeName
{
[Token(Token = "0x60028AF")]
[Address(RVA = "0x408890", Offset = "0x407690", VA = "0x180408890")]
get
{
return null;
}
}
/// <summary>Gets or sets the XML type namespace for the current object type.</summary>
/// <returns>The XML type namespace for the current object type.</returns>
// Token: 0x170005B9 RID: 1465
// (get) Token: 0x060028B0 RID: 10416 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005B9")]
public string XmlTypeNamespace
{
[Token(Token = "0x60028B0")]
[Address(RVA = "0x3FA170", Offset = "0x3F8F70", VA = "0x1803FA170")]
get
{
return null;
}
}
// Token: 0x170005BA RID: 1466
// (get) Token: 0x060028B1 RID: 10417 RVA: 0x000164A0 File Offset: 0x000146A0
[Token(Token = "0x170005BA")]
internal bool IsInteropXmlElement
{
[Token(Token = "0x60028B1")]
[Address(RVA = "0x781F10", Offset = "0x780D10", VA = "0x180781F10")]
get
{
return default(bool);
}
}
// Token: 0x170005BB RID: 1467
// (get) Token: 0x060028B2 RID: 10418 RVA: 0x000164B8 File Offset: 0x000146B8
[Token(Token = "0x170005BB")]
internal bool IsInteropXmlType
{
[Token(Token = "0x60028B2")]
[Address(RVA = "0x7722A0", Offset = "0x7710A0", VA = "0x1807722A0")]
get
{
return default(bool);
}
}
// Token: 0x060028B3 RID: 10419 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60028B3")]
[Address(RVA = "0x25CA9C0", Offset = "0x25C97C0", VA = "0x1825CA9C0", Slot = "9")]
internal override void SetReflectionObject(object reflectionObject)
{
}
// Token: 0x040017BD RID: 6077
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40017BD")]
private bool _useAttribute;
// Token: 0x040017BE RID: 6078
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x40017BE")]
private string _xmlElementName;
// Token: 0x040017BF RID: 6079
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
[Token(Token = "0x40017BF")]
private string _xmlNamespace;
// Token: 0x040017C0 RID: 6080
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
[Token(Token = "0x40017C0")]
private string _xmlTypeName;
// Token: 0x040017C1 RID: 6081
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
[Token(Token = "0x40017C1")]
private string _xmlTypeNamespace;
// Token: 0x040017C2 RID: 6082
[global::Cpp2IlInjected.FieldOffset(Offset = "0x50")]
[Token(Token = "0x40017C2")]
private bool _isType;
// Token: 0x040017C3 RID: 6083
[global::Cpp2IlInjected.FieldOffset(Offset = "0x51")]
[Token(Token = "0x40017C3")]
private bool _isElement;
}
}