| 12345678910111213141516171819 |
- //
- // System.Runtime.Remoting.Messaging.IMessageSink.cs
- //
- // Author:
- // Piers Haken ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System.Runtime.Remoting;
- namespace System.Runtime.Remoting.Messaging
- {
- public interface IMessageCtrl
- {
- void Cancel (int msToCancel);
- }
- }
|