Click here to Skip to main content
15,881,812 members
Articles / Desktop Programming / Win32

Get all the types a COM object implements

Rate me:
Please Sign up or sign in to vote.
4.75/5 (4 votes)
17 Feb 2009Public Domain 27K   261   16   1
How to return all types that a COM object implements.

Introduction

This article shows how to get all the types a COM object implements.

Background

When you get a COM object in C#, if you know the classes and the interfaces it implements, you can easily cast it to the desired type. But, what if you don't know its type. Or more to the point, you think you know it's type and it doesn't implement that type.

Using the code

The following method will return all the types that a COM object implements. I don't use this in production code, but I do use it occasionally when writing code.

C#
/// <summary>
/// Get all implemented types in a COM object. Code based on work at
/// http://fernandof.wordpress.com/2008/02/05/how-to-check-
///          the-type-of-a-com-object-system__comobject-with-visual-c-net/
/// </summary>
/// <param name="comObject">The object we want all types of.</param>
/// <param name="assType">Any type in the COM assembly.</param>
/// <returns>All implemented classes/interfaces.</returns>
public static Type[] GetAllTypes(object comObject, Type assType)
{

    // get the com object and fetch its IUnknown
    IntPtr iunkwn = Marshal.GetIUnknownForObject(comObject);

    // enum all the types defined in the interop assembly
    Assembly interopAss = Assembly.GetAssembly(assType);
    Type[] excelTypes = interopAss.GetTypes();

    // find all types it implements
    ArrayList implTypes = new ArrayList();
    foreach (Type currType in excelTypes)
    {
        // com interop type must be an interface with valid iid
        Guid iid = currType.GUID;
        if (!currType.IsInterface || iid == Guid.Empty)
        continue;

        // query supportability of current interface on object
        IntPtr ipointer;
        Marshal.QueryInterface(iunkwn, ref iid, out ipointer);

        if (ipointer != IntPtr.Zero)
          implTypes.Add(currType);

        }

    // no implemented type found
    return (Type[])implTypes.ToArray(typeof(Type));
}

History

Original post.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Chief Technology Officer Windward Studios
United States United States
CTO/founder - Windward Studios

Comments and Discussions

 
GeneralCouldn't you... Pin
Qwertie28-Feb-09 4:38
Qwertie28-Feb-09 4:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.