BaseGpsReceiverOnArrival Method |
Raises the Arrival event.
Namespace: ZylSoft.GpsAssembly: ZylGpsReceiver (in ZylGpsReceiver.dll) Version: 3.29.9208.19412
XMLNS for XAML: Not mapped to an xmlns.
Syntaxprotected virtual void OnArrival(
ArrivalEventArgs e
)
Protected Overridable Sub OnArrival (
e As ArrivalEventArgs
)
Dim e As ArrivalEventArgs
Me.OnArrival(e)
protected:
virtual void OnArrival(
ArrivalEventArgs^ e
)
abstract OnArrival :
e : ArrivalEventArgs -> unit
override OnArrival :
e : ArrivalEventArgs -> unit
protected void OnArrival(
ArrivalEventArgs e
)
protected function OnArrival(
e : ArrivalEventArgs
)
PROTECTED VIRTUAL METHOD OnArrival(
e AS ArrivalEventArgs
) AS VOID
No code example is currently available or this language may not be supported.
Parameters
- e ArrivalEventArgs
-
An ArrivalEventArgs that contains the event data.
Remarks
Raising an event invokes the event handler through a delegate.
The OnArrival method also allows derived classes to handle the event without
attaching a delegate. This is the preferred technique for handling the event
in a derived class.
Notes to Inheritors: When overriding OnArrival in a derived class, be sure to
call the base class's OnArrival method so that registered delegates
receive the event.
See Also