Represents a delegate to use for dispatcher operations.
Namespace:
System.Windows.Threading
Assembly:
WindowsBase (in WindowsBase.dll)
Visual Basic (Declaration)
Public Delegate Function DispatcherOperationCallback ( _
arg As Object _
) As Object
Dim instance As New DispatcherOperationCallback(AddressOf HandlerMethod)
public delegate Object DispatcherOperationCallback(
Object arg
)
public delegate Object^ DispatcherOperationCallback(
Object^ arg
)
JScript does not support delegates.
In XAML, you can use delegates but you cannot define your own.
It is not necessary to use this delegate for dispatcher operations, but DispatcherOperationCallback and SendOrPostCallback use dynamic invoking.
Partial Trust applications do not support dynamic invoking, so you must use either DispatcherOperationCallback or SendOrPostCallback if the application is going to be running in Partial Trust.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0
Reference