Marshal.GetITypeInfoForType(Type) Method

Definition

Returns a ITypeInfo interface from a managed type.

C#
public static IntPtr GetITypeInfoForType(Type t);
C#
[System.Security.SecurityCritical]
public static IntPtr GetITypeInfoForType(Type t);

Parameters

t
Type

The type whose ITypeInfo interface is being requested.

Returns

IntPtr

A pointer to the ITypeInfo interface for the t parameter.

Attributes

Exceptions

t is not a visible type to COM.

-or-

t is a Windows Runtime type.

A type library is registered for the assembly that contains the type, but the type definition cannot be found.

Examples

The following example demonstrates how to retrieve a pointer to the ITypeInfo interface for a type using the GetITypeInfoForType method.

C#
using System;
using System.Runtime.InteropServices;

class Program
{

    static void Run()
    {
        Console.WriteLine("Calling Marshal.GetITypeInfoForType...");

        // Get the ITypeInfo pointer for an Object type
        IntPtr pointer = Marshal.GetITypeInfoForType(typeof(object));

        Console.WriteLine("Calling Marshal.Release...");

        // Always call Marshal.Release to decrement the reference count.
        Marshal.Release(pointer);
    }

    static void Main(string[] args)
    {
        Run();
    }
}

Remarks

This method returns a pointer to an ITypeInfo implementation that is based on the original type. Calling an object with GetITypeInfoForType causes the reference count to increment on the interface pointer before the pointer is returned. Always use Marshal.Release to decrement the reference count once you have finished with the pointer. You can apply the System.Runtime.InteropServices.MarshalAsAttribute to replace standard interop marshaling behavior with this custom marshaler.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also