TypeLibExporterFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates how a type library should be produced.
This enumeration supports a bitwise combination of its member values.
public enum class TypeLibExporterFlags
[System.Flags]
[System.Serializable]
public enum TypeLibExporterFlags
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum TypeLibExporterFlags
[<System.Flags>]
[<System.Serializable>]
type TypeLibExporterFlags =
[<System.Flags>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type TypeLibExporterFlags =
Public Enum TypeLibExporterFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Specifies no flags. This is the default. |
OnlyReferenceRegistered | 1 | Exports references to types that were imported from COM as |
CallerResolvedReferences | 2 | Allows the caller to explicitly resolve type library references without consulting the registry. |
OldNames | 4 | When exporting type libraries, the .NET Framework resolves type name conflicts by decorating the type with the name of the namespace; for example, |
ExportAs32Bit | 16 | 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 | 32 | 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. |
Remarks
Used with ConvertAssemblyToTypeLib.