This documentation is archived and is not being maintained.
TypeLibImporterFlags Enumeration
Visual Studio 2010
Indicates how an assembly should be produced.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Runtime.InteropServicesAssembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
| None | No special settings. This is the default. | |
| PrimaryInteropAssembly | Generates a primary interop assembly. For more information, see PrimaryInteropAssemblyAttribute. A keyfile must be specified. | |
| UnsafeInterfaces | Imports all interfaces as interfaces that suppress the common language runtime's stack crawl for SecurityPermissionFlag::UnmanagedCode permission. Be sure you understand the responsibilities associated with suppressing this security check. | |
| SafeArrayAsSystemArray | Imports all SAFEARRAYs as System::Array instead of typed, single-dimensional, zero-based managed arrays. This option is useful when dealing with multi-dimensional, non-zero-based SAFEARRAYs, which otherwise cannot be accessed unless you edit the resulting assembly by using the ILDASM and ILASM tools. | |
| TransformDispRetVals | Transforms [out, retval] parameters of methods on dispatch-only interfaces (dispinterfaces) into return values. | |
| PreventClassMembers | Not used. | |
| SerializableValueClasses | Uses serializable classes. | |
| ImportAsX86 | Imports a type library for the x86 platform. | |
| ImportAsX64 | Imports a type library for the x86 64-bit platform. | |
| ImportAsItanium | Imports a type library for the Itanium platform. | |
| ImportAsAgnostic | Imports a type library for any platform. | |
| ReflectionOnlyLoading | Uses reflection-only loading. | |
| NoDefineVersionResource | Prevents inclusion of a version resource in the interop assembly. For more information, see DefineVersionInfoResource. |
This enumeration is used with the ConvertTypeLibToAssembly method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: