46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace System.Runtime.Remoting.Channels
|
|
{
|
|
// Token: 0x020003B4 RID: 948
|
|
internal class ServerDispatchSinkProvider : IServerChannelSinkProvider, IServerFormatterSinkProvider
|
|
{
|
|
// Token: 0x060025DA RID: 9690 RVA: 0x0007CEAC File Offset: 0x0007B0AC
|
|
public ServerDispatchSinkProvider()
|
|
{
|
|
}
|
|
|
|
// Token: 0x060025DB RID: 9691 RVA: 0x0007CEB4 File Offset: 0x0007B0B4
|
|
public ServerDispatchSinkProvider(IDictionary properties, ICollection providerData)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000710 RID: 1808
|
|
// (get) Token: 0x060025DC RID: 9692 RVA: 0x0007CEBC File Offset: 0x0007B0BC
|
|
// (set) Token: 0x060025DD RID: 9693 RVA: 0x0007CEC0 File Offset: 0x0007B0C0
|
|
public IServerChannelSinkProvider Next
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
set
|
|
{
|
|
throw new NotSupportedException();
|
|
}
|
|
}
|
|
|
|
// Token: 0x060025DE RID: 9694 RVA: 0x0007CEC8 File Offset: 0x0007B0C8
|
|
public IServerChannelSink CreateSink(IChannelReceiver channel)
|
|
{
|
|
return new ServerDispatchSink();
|
|
}
|
|
|
|
// Token: 0x060025DF RID: 9695 RVA: 0x0007CED0 File Offset: 0x0007B0D0
|
|
public void GetChannelData(IChannelDataStore channelData)
|
|
{
|
|
}
|
|
}
|
|
}
|