Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IMessageCtrl.cs « System.Runtime.Remoting.Messaging « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fe21c3223207a20752ba88330f3dab6158f4de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// System.Runtime.Remoting.Messaging.IMessageSink.cs
//
// Author:
//   Piers Haken (piersh@friskit.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using System.Runtime.Remoting;

namespace System.Runtime.Remoting.Messaging
{
    public interface IMessageCtrl
    {
        void Cancel (int msToCancel);
    }
}