using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// Stores sink provider data for sink providers.
// Token: 0x020004EA RID: 1258
[Token(Token = "0x20004EA")]
[ComVisible(true)]
public class SinkProviderData
{
/// Initializes a new instance of the class.
/// The name of the sink provider that the data in the current object is associated with.
// Token: 0x06002882 RID: 10370 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002882")]
[Address(RVA = "0x23828B0", Offset = "0x23816B0", VA = "0x1823828B0")]
public SinkProviderData(string name)
{
}
/// Gets a list of the child nodes.
/// A of the child nodes.
// 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;
}
}
/// Gets a dictionary through which properties on the sink provider can be accessed.
/// A dictionary through which properties on the sink provider can be accessed.
// 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;
}
}