Condividi tramite


MonoPInvokeCallbackAttribute(Type) Costruttore

Definizione

Costruttore per MonoPInvokeCallbackAttribute.

public MonoPInvokeCallbackAttribute (Type t);
new ObjCRuntime.MonoPInvokeCallbackAttribute : Type -> ObjCRuntime.MonoPInvokeCallbackAttribute

Parametri

t
Type

Tipo del delegato che verrà richiamato.

Commenti

È necessario specificare il tipo del delegato che il codice verrà chiamato come . L'esempio seguente illustra lo scenario in cui viene usato:

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
	}

Si applica a