IMessageCtrl.cs 323 B

12345678910111213141516171819
  1. //
  2. // System.Runtime.Remoting.Messaging.IMessageSink.cs
  3. //
  4. // Author:
  5. // Piers Haken ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System.Runtime.Remoting;
  10. namespace System.Runtime.Remoting.Messaging
  11. {
  12. public interface IMessageCtrl
  13. {
  14. void Cancel (int msToCancel);
  15. }
  16. }