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,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;
}
}