MonoPInvokeCallbackAttribute(Type) 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
MonoPInvokeCallbackAttribute 的建構函式。
public MonoPInvokeCallbackAttribute (Type t);
new ObjCRuntime.MonoPInvokeCallbackAttribute : Type -> ObjCRuntime.MonoPInvokeCallbackAttribute
參數
- t
- Type
將回呼我們之委派的類型。
備註
您必須指定此程式碼將呼叫為 的委派類型。 下列範例顯示使用此案例的案例:
using System;
delegate void DrawPatternCallback (IntPtr voidptr, IntPtr cgcontextref);
º [MonoPInvokeCallback (typeof (DrawPatternCallback))]
static void DrawCallback (IntPtr voidptr, IntPtr cgcontextptr)
{
// This method is called from the C library
}