다음을 통해 공유


DllImportAttribute 클래스

관리되지 않는 DLL(동적 연결 라이브러리)에서 특성 사용 해당 메서드를 정적 진입점으로 노출함을 나타냅니다.

네임스페이스: System.Runtime.InteropServices
어셈블리: mscorlib(mscorlib.dll)

구문

‘선언
<AttributeUsageAttribute(AttributeTargets.Method, Inherited:=False)> _
<ComVisibleAttribute(True)> _
Public NotInheritable Class DllImportAttribute
    Inherits Attribute
‘사용 방법
Dim instance As DllImportAttribute
[AttributeUsageAttribute(AttributeTargets.Method, Inherited=false)] 
[ComVisibleAttribute(true)] 
public sealed class DllImportAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Method, Inherited=false)] 
[ComVisibleAttribute(true)] 
public ref class DllImportAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Method, Inherited=false) */ 
/** @attribute ComVisibleAttribute(true) */ 
public final class DllImportAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Method, Inherited=false) 
ComVisibleAttribute(true) 
public final class DllImportAttribute extends Attribute

설명

이 특성을 메서드에 적용할 수 있습니다.

DllImportAttribute 특성은 관리되지 않는 DLL에서 내보낸 함수를 호출하는 데 필요한 정보를 제공합니다. 최소한 진입점을 포함하는 DLL의 이름을 제공해야 합니다.

이 특성을 C# 및 C++ 메서드 정의에 직접 적용해야 합니다. 그러한 Visual Basic 컴파일러는 emits this attribute when you use the Declare 문을 사용할 때 이 특성을 내보냅니다. BestFitMapping, CallingConvention, ExactSpelling, PreserveSig, SetLastError 또는 ThrowOnUnmappableChar 필드를 포함하는 복합 메서드 정의의 경우 이 특성을 Visual Basic 메서드 정의에 직접 제공해야 합니다.

참고   JScript는 이 특성을 지원하지 않습니다. 따라서 C# 또는 Visual Basic 래퍼 클래스를 사용하여 JScript 프로그램에서 관리되지 않는 API 메서드에 액세스할 수 있습니다.

플랫폼 호출 서비스를 사용하여 관리되지 않는 DLL의 함수에 액세스하는 데 대한 자세한 내용은 관리되지 않는 DLL 함수 사용을 참조하십시오.

참고

DllImportAttribute는 제네릭 형식의 마샬링은 지원하지 않습니다.

예제

다음 코드 예제에서는 DllImportAttribute 특성을 사용하여 Win32 MessageBox 함수를 가져오는 방법을 보여 줍니다. 그런 다음 가져온 메서드를 호출합니다.

Imports System
Imports System.Runtime.InteropServices

Module Example

    ' Use DllImport to import the Win32 MessageBox function.
    <DllImport("user32.dll", CharSet:=CharSet.Auto)> _
    Function MessageBox(ByVal hwnd As IntPtr, ByVal t As String, ByVal caption As String, ByVal t2 As UInt32) As Integer
    End Function


    Sub Main()
        ' Call the MessageBox function using platform invoke.
        MessageBox(New IntPtr(0), "Hello World!", "Hello Dialog", 0)
    End Sub

End Module
using System;
using System.Runtime.InteropServices;

class Example
{
    // Use DllImport to import the Win32 MessageBox function.
    [DllImport("user32.dll", CharSet = CharSet.Auto)]
    public static extern int MessageBox(IntPtr hWnd, String text, String caption, uint type);
    
    static void Main()
    {
        // Call the MessageBox function using platform invoke.
        MessageBox(new IntPtr(0), "Hello World!", "Hello Dialog", 0);
    }
}

상속 계층 구조

System.Object
   System.Attribute
    System.Runtime.InteropServices.DllImportAttribute

스레드로부터의 안전성

이 형식의 모든 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, 1.0에서 지원

참고 항목

참조

DllImportAttribute 멤버
System.Runtime.InteropServices 네임스페이스
SetLastError
ExactSpelling
PreserveSig
CallingConvention