TypeLibFuncAttribute Class
Contains the FUNCFLAGS that were originally imported for this method from the COM type library.
Assembly: mscorlib (in mscorlib.dll)
The Type Library Importer (Tlbimp.exe) applies this attribute to methods.
This attribute is applied when a type library is imported and should never be changed. It is only applied when the method's FUNCFLAGS evaluate to non zero. The attribute is designed to be used by tools that need to know how the original FUNCFLAGS were set. The common language runtime does not use this attribute.
The following example demonstrates how to get the TypeLibFuncAttribute value of a method.
Imports System Imports System.Reflection Imports System.Runtime.InteropServices Module C Public Function IsHiddenMethod(ByVal mi As MethodInfo) As Boolean Dim MethodAttributes As Object() = mi.GetCustomAttributes(GetType(TypeLibFuncAttribute), True) If MethodAttributes.Length > 0 Then Dim tlf As TypeLibFuncAttribute = MethodAttributes(0) Dim flags As TypeLibFuncFlags = tlf.Value Return (flags & TypeLibFuncFlags.FHidden) > 0 End If Return False End Function End Module
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.