IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Removes all IP addresses from the list of IP addresses for unicast discovery.
Name |
GevDiscoveryUnicastIPAddressListClear |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Execute GevDiscoveryUnicastIPAddressListClear
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GevDiscoveryUnicastIPAddressListClear")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("GevDiscoveryUnicastIPAddressListClear")->WaitUntilDone();
C#
// Execute GevDiscoveryUnicastIPAddressListClear
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("GevDiscoveryUnicastIPAddressListClear").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("GevDiscoveryUnicastIPAddressListClear").WaitUntilDone();
Python
# Execute GevDiscoveryUnicastIPAddressListClear
nodeMapRemoteDevice.FindNode("GevDiscoveryUnicastIPAddressListClear").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("GevDiscoveryUnicastIPAddressListClear").WaitUntilDone()