summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Runtime/InteropServices/IRegistrationServices.cs
blob: ae330e8652f439bf4daee0ce7d3540c376b1916c (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/*=============================================================================
**
**
**
** Purpose: This interface provides services for registering and unregistering
**          a managed server for use by COM.
**
**
=============================================================================*/

namespace System.Runtime.InteropServices {
    
    using System;
    using System.Reflection;
    using System.Security;
    using System.Security.Permissions;

    [Flags()]
[System.Runtime.InteropServices.ComVisible(true)]
    public enum AssemblyRegistrationFlags
    {
        None                    = 0x00000000,
        SetCodeBase             = 0x00000001,
    }

    [Guid("CCBD682C-73A5-4568-B8B0-C7007E11ABA2")]
[System.Runtime.InteropServices.ComVisible(true)]
    public interface IRegistrationServices
    {
        [System.Security.SecurityCritical]  // auto-generated_required
        bool RegisterAssembly(Assembly assembly, AssemblyRegistrationFlags flags);

        [System.Security.SecurityCritical]  // auto-generated_required
        bool UnregisterAssembly(Assembly assembly);

        [System.Security.SecurityCritical]  // auto-generated_required
        Type[] GetRegistrableTypesInAssembly(Assembly assembly);

        [System.Security.SecurityCritical]  // auto-generated_required
        String GetProgIdForType(Type type);

        [System.Security.SecurityCritical]  // auto-generated_required
        void RegisterTypeForComClients(Type type, ref Guid g);

        Guid GetManagedCategoryGuid();

        [System.Security.SecurityCritical]  // auto-generated_required
        bool TypeRequiresRegistration(Type type);

        bool TypeRepresentsComType(Type type);
    }
}