Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

69 lines
2.4 KiB
C#

using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// <summary>Stores sink provider data for sink providers.</summary>
// Token: 0x020004EA RID: 1258
[Token(Token = "0x20004EA")]
[ComVisible(true)]
public class SinkProviderData
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> class.</summary>
/// <param name="name">The name of the sink provider that the data in the current <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> object is associated with.</param>
// Token: 0x06002882 RID: 10370 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002882")]
[Address(RVA = "0x23828B0", Offset = "0x23816B0", VA = "0x1823828B0")]
public SinkProviderData(string name)
{
}
/// <summary>Gets a list of the child <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> nodes.</summary>
/// <returns>A <see cref="T:System.Collections.IList" /> of the child <see cref="T:System.Runtime.Remoting.Channels.SinkProviderData" /> nodes.</returns>
// Token: 0x170005A4 RID: 1444
// (get) Token: 0x06002883 RID: 10371 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005A4")]
public IList Children
{
[Token(Token = "0x6002883")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Gets a dictionary through which properties on the sink provider can be accessed.</summary>
/// <returns>A dictionary through which properties on the sink provider can be accessed.</returns>
// Token: 0x170005A5 RID: 1445
// (get) Token: 0x06002884 RID: 10372 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170005A5")]
public IDictionary Properties
{
[Token(Token = "0x6002884")]
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
get
{
return null;
}
}
// Token: 0x040017AB RID: 6059
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x40017AB")]
private string sinkName;
// Token: 0x040017AC RID: 6060
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x40017AC")]
private ArrayList children;
// Token: 0x040017AD RID: 6061
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x40017AD")]
private Hashtable properties;
}
}