using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Contexts
{
/// Indicates that the implementing property will be registered at runtime through the method.
// Token: 0x020003C4 RID: 964
[ComVisible(true)]
public interface IContributeDynamicSink
{
/// Returns the message sink that will be notified of call start and finish events through the interface.
/// A dynamic sink that exposes the interface.
///
///
///
// Token: 0x06002630 RID: 9776
IDynamicMessageSink GetDynamicSink();
}
}