using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Remoting.Metadata { /// Provides default functionality for all SOAP attributes. // Token: 0x020004F3 RID: 1267 [Token(Token = "0x20004F3")] [ComVisible(true)] public class SoapAttribute : Attribute { /// Creates an instance of . // Token: 0x0600289E RID: 10398 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600289E")] [Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")] public SoapAttribute() { } /// 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. /// /// if the target object of the current attribute must be serialized as an XML attribute; if the target object must be serialized as a subelement. // 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); } } /// Gets or sets the XML namespace name. /// The XML namespace name under which the target of the current attribute is serialized. // 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; /// The XML namespace to which the target of the current SOAP attribute is serialized. // Token: 0x040017B3 RID: 6067 [global::Cpp2IlInjected.FieldOffset(Offset = "0x18")] [Token(Token = "0x40017B3")] protected string ProtXmlNamespace; /// A reflection object used by attribute classes derived from the class to set XML serialization information. // Token: 0x040017B4 RID: 6068 [global::Cpp2IlInjected.FieldOffset(Offset = "0x20")] [Token(Token = "0x40017B4")] protected object ReflectInfo; } }