39 lines
1.3 KiB
C#
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: 0x0200050E RID: 1294
|
|
[Token(Token = "0x200050E")]
|
|
[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: 0x04001808 RID: 6152
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x4001808")]
|
|
public string HeaderNamespace;
|
|
|
|
/// <summary>Indicates whether the receiving end must understand the out-of-band data.</summary>
|
|
// Token: 0x04001809 RID: 6153
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4001809")]
|
|
public bool MustUnderstand;
|
|
|
|
/// <summary>Contains the name of the <see cref="T:System.Runtime.Remoting.Messaging.Header" />.</summary>
|
|
// Token: 0x0400180A RID: 6154
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x400180A")]
|
|
public string Name;
|
|
|
|
/// <summary>Contains the value for the <see cref="T:System.Runtime.Remoting.Messaging.Header" />.</summary>
|
|
// Token: 0x0400180B RID: 6155
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x400180B")]
|
|
public object Value;
|
|
}
|
|
}
|