Occurs when the time operation has completed.
The event handler receives an argument of type GetTimeCompletedEventArgs containing data related to this event. The following GetTimeCompletedEventArgs property provides information specific to this event.
| Property | Description |
|---|---|
| AsyncResult | Gets the result of the asynchronous time operation. |
BeginGetTime is used in asynchronous processing to raise the GetTimeCompleted event when the time operation has completed.
EndGetTime is used to complete the operation initiated by a call to BeginGetTime and get the time status when the GetTimeCompleted event is raised.