TypeLibTypeAttribute 클래스
처음에 COM 형식 라이브러리에서 이 형식으로 가져온 TYPEFLAGS가 들어 있습니다.
네임스페이스: System.Runtime.InteropServices
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
<ComVisibleAttribute(True)> _
<AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Struct Or AttributeTargets.Enum Or AttributeTargets.Interface, Inherited:=False)> _
Public NotInheritable Class TypeLibTypeAttribute
Inherits Attribute
‘사용 방법
Dim instance As TypeLibTypeAttribute
[ComVisibleAttribute(true)]
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface, Inherited=false)]
public sealed class TypeLibTypeAttribute : Attribute
[ComVisibleAttribute(true)]
[AttributeUsageAttribute(AttributeTargets::Class|AttributeTargets::Struct|AttributeTargets::Enum|AttributeTargets::Interface, Inherited=false)]
public ref class TypeLibTypeAttribute sealed : public Attribute
/** @attribute ComVisibleAttribute(true) */
/** @attribute AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface, Inherited=false) */
public final class TypeLibTypeAttribute extends Attribute
ComVisibleAttribute(true)
AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface, Inherited=false)
public final class TypeLibTypeAttribute extends Attribute
설명
형식 라이브러리 가져오기(Tlbimp.exe)는 클래스 또는 인터페이스에 이 특성을 적용합니다.
이 특성은 형식 라이브러리를 가져올 때 적용되며, 이후에 변경되지 않습니다. 메서드의 TYPEFLAGS가 0이 아닌 경우에만 이 특성이 적용됩니다. 이 특성은 원본 TYPEFLAGS를 설정한 방법을 알고 있는 도구에 의해 사용되도록 구성되었습니다. 공용 언어 런타임은 이 특성을 이용하지 않습니다.
예제
다음 예제에서는 클래스나 인터페이스의 TypeLibTypeAttribute 값을 가져오는 방법을 보여 줍니다.
Imports System
Imports System.Runtime.InteropServices
Module B
Public Function IsHiddenInterface(ByVal InterfaceType As Type) As Boolean
Dim InterfaceAttributes As Object() = _
InterfaceType.GetCustomAttributes(GetType(TypeLibTypeAttribute), False)
If InterfaceAttributes.Length > 0 Then
Dim tlt As TypeLibTypeAttribute = InterfaceAttributes(0)
Dim flags As TypeLibTypeFlags = tlt.Value
Return (flags & TypeLibTypeFlags.FHidden) > 0
End If
Return False
End Function
End Module
using System;
using System.Runtime.InteropServices;
namespace B
{
class ClassB
{
public static bool IsHiddenInterface( Type InterfaceType )
{
object[] InterfaceAttributes = InterfaceType.GetCustomAttributes( typeof( TypeLibTypeAttribute ), false );
if( InterfaceAttributes.Length > 0 )
{
TypeLibTypeAttribute tlt = ( TypeLibTypeAttribute ) InterfaceAttributes[0];
TypeLibTypeFlags flags = tlt.Value;
return ( flags & TypeLibTypeFlags.FHidden ) != 0;
}
return false;
}
}
}
using namespace System;
using namespace System::Runtime::InteropServices;
ref class ClassB
{
private:
static bool IsHiddenInterface( Type^ InterfaceType )
{
array<Object^>^InterfaceAttributes = InterfaceType->GetCustomAttributes( TypeLibTypeAttribute::typeid, false );
if ( InterfaceAttributes->Length > 0 )
{
TypeLibTypeAttribute^ tlt = dynamic_cast<TypeLibTypeAttribute^>(InterfaceAttributes[ 0 ]);
TypeLibTypeFlags flags = tlt->Value;
return (flags & TypeLibTypeFlags::FHidden) != TypeLibTypeFlags(0);
}
return false;
}
};
import System.*;
import System.Runtime.InteropServices.*;
class ClassB
{
public static boolean IsHiddenInterface(Type InterfaceType)
{
Object interfaceAttributes[]
= InterfaceType.GetCustomAttributes(
TypeLibTypeAttribute.class.ToType(), false);
if (interfaceAttributes.length > 0) {
TypeLibTypeAttribute tlt
= (TypeLibTypeAttribute)(interfaceAttributes.get_Item(0));
TypeLibTypeFlags flags = tlt.get_Value();
return (int)(flags & TypeLibTypeFlags.FHidden) != 0;
}
return false;
} //IsHiddenInterface
} //ClassB
상속 계층 구조
System.Object
System.Attribute
System.Runtime.InteropServices.TypeLibTypeAttribute
스레드로부터의 안전성
이 형식의 모든 public static(Visual Basic의 경우 Shared) 멤버는 스레드로부터 안전합니다. 인터페이스 멤버는 스레드로부터 안전하지 않습니다.
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0에서 지원
참고 항목
참조
TypeLibTypeAttribute 멤버
System.Runtime.InteropServices 네임스페이스