ZylGPSReceiver Mobile for Smart Phone

SatelliteEventHandler Delegate

Represents the method that will handle the SatelliteReceived event.

[Visual Basic]
Public Delegate Sub SatelliteEventHandler( _
   ByVal Object As Object, _
   ByVal SatelliteEventArgs As SatelliteEventArgs _
)
[C#]
public delegate void SatelliteEventHandler(
   Object sender,
   SatelliteEventArgs e
);

Parameters

Object
The source of the event.
SatelliteEventArgs
A SatelliteEventArgs that contains the event data.

Remarks

When you create a SatelliteEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate.

Requirements

Namespace: ZylGPSReceiverMobileSP

Assembly: ZylGPSReceiverMobileSP (in ZylGPSReceiverMobileSP.dll)

See Also

ZylGPSReceiverMobileSP Namespace