'DeclarationPublic Event DeviceDiscovered As EventHandler(Of Device)
'UsageDim instance As DeviceRepository Dim handler As EventHandler(Of Device) AddHandler instance.DeviceDiscovered, handler
public event EventHandler<Device> DeviceDiscovered
Event Data
The event handler receives an argument of type Device containing data related to this event. The following Device properties provide information specific to this event.
| Property | Description |
|---|---|
| SystemIndex | Index of device in repository. |
Frameworks
| Product | Versions |
|---|---|
| .NET | net8.0 |
| .NET Framework | net48 |
See Also