Files
Dec2017-Script-Dump/mscorlib/System/Runtime/Remoting/Messaging/IMessageCtrl.cs
T
2026-06-04 11:42:34 +02:00

18 lines
891 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Runtime.Remoting.Messaging
{
/// <summary>Provides a way to control asynchronous messages after they have dispatched using the <see cref="M:System.Runtime.Remoting.Messaging.IMessageSink.AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)" />.</summary>
// Token: 0x020003EA RID: 1002
[ComVisible(true)]
public interface IMessageCtrl
{
/// <summary>Cancels an asynchronous call.</summary>
/// <param name="msToCancel">The number of milliseconds after which to cancel the message. </param>
/// <exception cref="T:System.Security.SecurityException">The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. </exception>
// Token: 0x06002717 RID: 10007
void Cancel(int msToCancel);
}
}