Marshal.AddRef(IntPtr) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 인터페이스의 참조 횟수를 증가시킵니다.
public:
static int AddRef(IntPtr pUnk);
[System.Security.SecurityCritical]
public static int AddRef (IntPtr pUnk);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public static int AddRef (IntPtr pUnk);
public static int AddRef (IntPtr pUnk);
[<System.Security.SecurityCritical>]
static member AddRef : nativeint -> int
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
static member AddRef : nativeint -> int
static member AddRef : nativeint -> int
Public Shared Function AddRef (pUnk As IntPtr) As Integer
매개 변수
- pUnk
-
IntPtr
nativeint
증가시킬 인터페이스 참조 횟수입니다.
반환
pUnk
매개 변수에 대한 참조 횟수의 새 값입니다.
- 특성
설명
공용 언어 런타임은 COM 개체의 참조 수를 관리하므로 이 메서드를 직접 사용할 필요가 없습니다. 사용자 지정 마샬러 테스트와 같은 드문 경우에서는 개체의 수명을 수동으로 조작해야 할 수 있습니다. 를 호출 AddRef한 후 와 같은 Marshal.Release메서드를 사용하여 참조 수를 감소시켜야 합니다. 경우에 따라 불안정할 수 있으므로 의 AddRef반환 값에 의존하지 마세요.
, Marshal.GetIUnknownForObject또는 Marshal.GetIDispatchForObject 을 IntPtr 호출Marshal.GetComInterfaceForObject하여 IUnknown 인터페이스 포인터를 나타내는 값을 가져올 수 있습니다. 관리되는 개체에서 이러한 메서드와 메서드를 AddRef 사용하여 관리되는 개체의 COM 호출 가능 래퍼가 나타내는 COM 인터페이스를 가져올 수도 있습니다. 이 래퍼 유형의 세부 정보를 잘 모르는 경우 COM 호출 가능 래퍼를 참조하세요.
적용 대상
추가 정보
.NET