PushFrame Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Pushes an execution frame onto the event queue of a dispatcher.

Namespace:  Microsoft.SPOT
Assembly:  Microsoft.SPOT.TinyCore (in Microsoft.SPOT.TinyCore.dll)

Syntax

'Declaration
Public Shared Sub PushFrame ( _
    frame As DispatcherFrame _
)
public static void PushFrame(
    DispatcherFrame frame
)
public:
static void PushFrame(
    DispatcherFrame^ frame
)
static member PushFrame : 
        frame:DispatcherFrame -> unit 
public static function PushFrame(
    frame : DispatcherFrame
)

Parameters

Remarks

A dispatcher processes the event queue in a loop that is typically initiated by having the application invoke the Run method. Each iteration of the loop is referred to as a frame. The PushFrame method pushes a nested loop, which is contained in the frame parameter, onto the event queue.

.NET Framework Security

See Also

Reference

Dispatcher Class

Microsoft.SPOT Namespace