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

imessagectrl.cs « remoting « runtime « system « mscorlib « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db95e5797bb011271ca6da5365d20e5a697467ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// ==++==
// 
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// ==--==
/*============================================================
**
** File:    IMessageCtrl.cs
**
**
** Purpose: Defines the message sink control interface for
**          async calls
**
**
===========================================================*/
namespace System.Runtime.Remoting.Messaging {
    using System.Runtime.Remoting;
    using System.Security.Permissions;
    using System;
[System.Runtime.InteropServices.ComVisible(true)]
    public interface IMessageCtrl
    {
        [System.Security.SecurityCritical]  // auto-generated_required
        void Cancel(int msToCancel);
    }
}