Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Metadata/SoapAttribute.cs
T
2026-04-10 22:50:51 +02:00

77 lines
2.9 KiB
C#

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