Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

124 lines
4.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Serialization
{
/// <summary>Provides mappings between code entities in .NET Framework Web service methods and the content of Web Services Description Language (WSDL) messages that are defined for SOAP Web services. </summary>
// Token: 0x02000133 RID: 307
[Token(Token = "0x2000133")]
public class XmlReflectionMember
{
// Token: 0x06000D4E RID: 3406 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000D4E")]
[Address(RVA = "0xDF4CD0", Offset = "0xDF3CD0", VA = "0x180DF4CD0")]
internal XmlReflectionMember(string name, Type type, XmlAttributes attributes)
{
}
/// <summary>Gets or sets a value that indicates whether the <see cref="T:System.Xml.Serialization.XmlReflectionMember" /> represents a Web service method return value, as opposed to an output parameter. </summary>
/// <returns>
/// <see langword="true" />, if the member represents a Web service return value; otherwise, <see langword="false" />.</returns>
// Token: 0x17000395 RID: 917
// (get) Token: 0x06000D4F RID: 3407 RVA: 0x00006DC8 File Offset: 0x00004FC8
[Token(Token = "0x17000395")]
public bool IsReturnValue
{
[Token(Token = "0x6000D4F")]
[Address(RVA = "0x4944B0", Offset = "0x4934B0", VA = "0x1804944B0")]
get
{
return default(bool);
}
}
/// <summary>Gets or sets the name of the Web service method member for this mapping. </summary>
/// <returns>The name of the Web service method.</returns>
// Token: 0x17000396 RID: 918
// (get) Token: 0x06000D50 RID: 3408 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000396")]
public string MemberName
{
[Token(Token = "0x6000D50")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
get
{
return null;
}
}
/// <summary>Gets or sets the type of the Web service method member code entity that is represented by this mapping. </summary>
/// <returns>The <see cref="T:System.Type" /> of the Web service method member code entity that is represented by this mapping.</returns>
// Token: 0x17000397 RID: 919
// (get) Token: 0x06000D51 RID: 3409 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000397")]
public Type MemberType
{
[Token(Token = "0x6000D51")]
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
get
{
return null;
}
}
/// <summary>Gets or sets an <see cref="T:System.Xml.Serialization.XmlAttributes" /> with the collection of <see cref="T:System.Xml.Serialization.XmlSerializer" />-related attributes that have been applied to the member code entity. </summary>
/// <returns>An <see cref="T:System.Xml.Serialization.XmlAttributes" /> that represents XML attributes that have been applied to the member code.</returns>
// Token: 0x17000398 RID: 920
// (get) Token: 0x06000D52 RID: 3410 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000398")]
public XmlAttributes XmlAttributes
{
[Token(Token = "0x6000D52")]
[Address(RVA = "0xDF4D20", Offset = "0xDF3D20", VA = "0x180DF4D20")]
get
{
return null;
}
}
// Token: 0x17000399 RID: 921
// (get) Token: 0x06000D53 RID: 3411 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000D54 RID: 3412 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000399")]
internal Type DeclaringType
{
[Token(Token = "0x6000D53")]
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
get
{
return null;
}
[Token(Token = "0x6000D54")]
[Address(RVA = "0x415830", Offset = "0x414830", VA = "0x180415830")]
set
{
}
}
// Token: 0x040006FE RID: 1790
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006FE")]
private bool isReturnValue;
// Token: 0x040006FF RID: 1791
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40006FF")]
private string memberName;
// Token: 0x04000700 RID: 1792
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4000700")]
private Type memberType;
// Token: 0x04000701 RID: 1793
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000701")]
private XmlAttributes xmlAttributes;
// Token: 0x04000702 RID: 1794
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000702")]
private Type declaringType;
}
}