Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Messaging/Header.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

39 lines
1.3 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Messaging
{
/// <summary>Defines the out-of-band data for a call.</summary>
// Token: 0x0200052A RID: 1322
[Token(Token = "0x200052A")]
[ComVisible(true)]
[Serializable]
public class Header
{
/// <summary>Indicates the XML namespace that the current <see cref="T:System.Runtime.Remoting.Messaging.Header" /> belongs to.</summary>
// Token: 0x040018CB RID: 6347
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40018CB")]
public string HeaderNamespace;
/// <summary>Indicates whether the receiving end must understand the out-of-band data.</summary>
// Token: 0x040018CC RID: 6348
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40018CC")]
public bool MustUnderstand;
/// <summary>Contains the name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />.</summary>
// Token: 0x040018CD RID: 6349
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x40018CD")]
public string Name;
/// <summary>Contains the value for the <see cref="T:System.Runtime.Remoting.Messaging.Header" />.</summary>
// Token: 0x040018CE RID: 6350
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
[Token(Token = "0x40018CE")]
public object Value;
}
}