using System;
using System.Collections;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// Stores sink provider data for sink providers.
// Token: 0x02000506 RID: 1286
[Token(Token = "0x2000506")]
[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: 0x06002A8F RID: 10895 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A8F")]
[Address(RVA = "0x2C0DF60", Offset = "0x2C0CF60", VA = "0x182C0DF60")]
public SinkProviderData(string name)
{
}
/// Gets a list of the child nodes.
/// A of the child nodes.
// Token: 0x1700061C RID: 1564
// (get) Token: 0x06002A90 RID: 10896 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700061C")]
public IList Children
{
[Token(Token = "0x6002A90")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
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: 0x1700061D RID: 1565
// (get) Token: 0x06002A91 RID: 10897 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700061D")]
public IDictionary Properties
{
[Token(Token = "0x6002A91")]
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
get
{
return null;
}
}
// Token: 0x0400186E RID: 6254
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
[Token(Token = "0x400186E")]
private string sinkName;
// Token: 0x0400186F RID: 6255
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
[Token(Token = "0x400186F")]
private ArrayList children;
// Token: 0x04001870 RID: 6256
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
[Token(Token = "0x4001870")]
private Hashtable properties;
}
}