using System; using System.Runtime.InteropServices; namespace System.Runtime.Remoting.Messaging { /// Provides a way to control asynchronous messages after they have dispatched using the . // Token: 0x020003EA RID: 1002 [ComVisible(true)] public interface IMessageCtrl { /// Cancels an asynchronous call. /// The number of milliseconds after which to cancel the message. /// The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. // Token: 0x06002717 RID: 10007 void Cancel(int msToCancel); } }