ImportedFromTypeLibAttribute 클래스
어셈블리 내부에서 정의된 형식이 처음에 형식 라이브러리에서 정의되었음을 나타냅니다.
네임스페이스: System.Runtime.InteropServices
어셈블리: mscorlib(mscorlib.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Assembly, Inherited:=False)> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class ImportedFromTypeLibAttribute
Inherits Attribute
‘사용 방법
Dim instance As ImportedFromTypeLibAttribute
[AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=false)]
[ComVisibleAttribute(true)]
public sealed class ImportedFromTypeLibAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Assembly, Inherited=false)]
[ComVisibleAttribute(true)]
public ref class ImportedFromTypeLibAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=false) */
/** @attribute ComVisibleAttribute(true) */
public final class ImportedFromTypeLibAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=false)
ComVisibleAttribute(true)
public final class ImportedFromTypeLibAttribute extends Attribute
설명
일반적으로 형식 라이브러리 가져오기(Tlbimp.exe)가 형식 라이브러리를 가져올 때 자동으로 이 특성을 적용하지만 직접 어셈블리에 이 특성을 적용할 수 있습니다.
이 특성은 주로 형식 정보의 원본 소스를 캡처하는 데 사용합니다. 예를 들어, A.tlb를 A.dll이라는 interop 어셈블리로 가져와 어셈블리 B.dll이 A.dll을 참조하도록 할 수 있습니다. B.dll을 B.tlb로 내보내면 이 특성으로 인해 A.dll을 가리키는 B.tlb의 참조가 대신 A.tlb를 가리키게 됩니다. 이 특성은 개별 형식이 COM에 구현되도록 지정하는 ComImportAttribute와는 다릅니다.
예제
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
Module A
Public Function IsCOMAssembly(ByVal a As System.Reflection.Assembly) As Boolean
Dim AsmAttributes As Object() = a.GetCustomAttributes(GetType(ImportedFromTypeLibAttribute), True)
If AsmAttributes.Length = 1 Then
Dim imptlb As ImportedFromTypeLibAttribute = AsmAttributes(0)
Dim strImportedFrom As String = imptlb.Value
' Print out the the name of the DLL from which the assembly is imported.
Console.WriteLine("Assembly " + a.FullName + " is imported from " + strImportedFrom)
Return True
End If
' This is not a COM assembly.
Console.WriteLine("Assembly " + a.FullName + " is not imported from COM")
Return False
End Function
End Module
using System;
using System.Reflection;
using System.Runtime.InteropServices;
namespace A
{
class ClassA
{
public static bool IsCOMAssembly( Assembly a )
{
object[] AsmAttributes = a.GetCustomAttributes( typeof( ImportedFromTypeLibAttribute ), true );
if( AsmAttributes.Length > 0 )
{
ImportedFromTypeLibAttribute imptlb = ( ImportedFromTypeLibAttribute )AsmAttributes[0];
string strImportedFrom = imptlb.Value;
// Print out the the name of the DLL from which the assembly is imported.
Console.WriteLine( "Assembly " + a.FullName + " is imported from " + strImportedFrom );
return true;
}
// This is not a COM assembly.
Console.WriteLine( "Assembly " + a.FullName + " is not imported from COM" );
return false;
}
}
}
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::InteropServices;
class ClassA
{
private:
static bool IsCOMAssembly( Assembly^ a )
{
array<Object^>^AsmAttributes = a->GetCustomAttributes( ImportedFromTypeLibAttribute::typeid, true );
if ( AsmAttributes->Length > 0 )
{
ImportedFromTypeLibAttribute^ imptlb = dynamic_cast<ImportedFromTypeLibAttribute^>(AsmAttributes[ 0 ]);
String^ strImportedFrom = imptlb->Value;
// Print out the name of the DLL from which the assembly is imported.
Console::WriteLine( "Assembly {0} is imported from {1}", a->FullName, strImportedFrom );
return true;
}
// This is not a COM assembly.
Console::WriteLine( "Assembly {0} is not imported from COM", a->FullName );
return false;
}
};
import System.*;
import System.Reflection.*;
import System.Runtime.InteropServices.*;
class ClassA
{
public static boolean IsCOMAssembly(Assembly a)
{
Object asmAttributes[] = a.GetCustomAttributes(
ImportedFromTypeLibAttribute.class.ToType(), true);
if (asmAttributes.length > 0) {
ImportedFromTypeLibAttribute imptlb
= (ImportedFromTypeLibAttribute)(asmAttributes.get_Item(0));
String strImportedFrom = imptlb.get_Value();
// Print out the the name of the DLL from which
// the assembly is imported.
Console.WriteLine("Assembly " + a.get_FullName()
+ " is imported from " + strImportedFrom);
return true;
}
// This is not a COM assembly.
Console.WriteLine("Assembly " + a.get_FullName()
+ " is not imported from COM");
return false;
} //IsCOMAssembly
} //ClassA
상속 계층 구조
System.Object
System.Attribute
System.Runtime.InteropServices.ImportedFromTypeLibAttribute
스레드로부터의 안전성
이 형식의 모든 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에서 지원
참고 항목
참조
ImportedFromTypeLibAttribute 멤버
System.Runtime.InteropServices 네임스페이스
ComImportAttribute 클래스