System.Runtime.InteropServices.TypeLibExporterFlags Enumeration

Indicates how a type library should be produced.

Syntax

[System.Flags]
[System.Runtime.InteropServices.ComVisible(true)]
public enum TypeLibExporterFlags

Remarks

Used with TypeLibConverter.ConvertAssemblyToTypeLib(System.Reflection.Assembly, string, TypeLibExporterFlags, ITypeLibExporterNotifySink).

Members

Member NameDescription
CallerResolvedReferences

Allows the caller to explicitly resolve type library references without consulting the registry.

ExportAs32Bit

When compiling on a 64-bit computer, specifies that the Type Library Exporter (Tlbexp.exe) generates a 32-bit type library. All data types are transformed appropriately.

ExportAs64Bit

When compiling on a 32-bit computer, specifies that the Type Library Exporter (Tlbexp.exe) generates a 64-bit type library. All data types are transformed appropriately.

None

Specifies no flags. This is the default.

OldNames

When exporting type libraries, the .NET Framework resolves type name conflicts by decorating the type with the name of the namespace; for example, System.Windows.Forms.HorizontalAlignment is exported as System_Windows_Forms_HorizontalAlignment. When there is a conflict with the name of a type that is not visible from COM, the .NET Framework exports the undecorated name. Set the TypeLibExporterFlags.OldNames flag or use the /oldnames option in the Type Library Exporter (Tlbexp.exe) to force the .NET Framework to export the decorated name. Note that exporting the decorated name was the default behavior in versions prior to the .NET Framework version 2.0.

OnlyReferenceRegistered

Exports references to types that were imported from COM as IUnknown if the type does not have a registered type library. Set this flag when you want the type library exporter to look for dependent types in the registry rather than in the same directory as the input assembly.

Requirements

Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0