NetworkCardDiscoverer Class |
Namespace: Zebra.Sdk.Card.Printer.Discovery
The NetworkCardDiscoverer type exposes the following members.
Name | Description | |
---|---|---|
NetworkCardDiscoverer | Initializes a new instance of the NetworkCardDiscoverer class |
Name | Description | |
---|---|---|
SetNetworkAdapterAddresses |
Sets the list of network adapter addresses to be used during discovery.
|
Name | Description | |
---|---|---|
DirectedBroadcast(DiscoveryHandler, String) |
Sends a directed broadcast discovery packet to the subnet specified by ipAddress.
| |
DirectedBroadcast(DiscoveryHandler, String, Int32) |
Sends a directed broadcast discovery packet to the subnet specified by ipAddress.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
FindPrinters(DiscoveryHandler) |
This method will search the network using a combination of discovery methods to find printers on the network.
| |
FindPrinters(DiscoveryHandler, ListString) |
Sends a discovery request to the list of printer DNS names or IP addresses in printersToFind.
| |
FindPrinters(DiscoveryHandler, ListString, Int32) |
Sends a discovery request to the list of printer DNS names or IP addresses in printersToFind.
| |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
LocalBroadcast(DiscoveryHandler) |
Sends a local broadcast packet.
| |
LocalBroadcast(DiscoveryHandler, Int32) |
Sends a local broadcast packet.
| |
SubnetSearch(DiscoveryHandler, String) |
Sends a discovery packet to the IP addresses specified in the subnetRange.
| |
SubnetSearch(DiscoveryHandler, String, Int32) |
Sends a discovery packet to the IP addresses specified in the subnetRange.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
using System; using System.Collections.Generic; using System.Threading; using Zebra.Sdk.Card.Printer.Discovery; using Zebra.Sdk.Printer.Discovery; public class NetworkCardDiscovererExample { public static void Main(string[] args) { try { Console.WriteLine("Starting printer discovery."); NetworkDiscoveryHandler discoveryHandler = new NetworkDiscoveryHandler(); NetworkCardDiscoverer.FindPrinters(discoveryHandler); discoveryHandler.DiscoveryCompleteEvent.WaitOne(); List<DiscoveredPrinter> discoveredPrinters = discoveryHandler.DiscoveredPrinters; Console.WriteLine($"Discovered {discoveredPrinters.Count} printers."); foreach (DiscoveredPrinter printer in discoveredPrinters) { Console.WriteLine(printer); } } catch (DiscoveryException e) { Console.WriteLine($"Error discovering printers: {e.Message}"); } } private class NetworkDiscoveryHandler : DiscoveryHandler { private List<DiscoveredPrinter> printers = new List<DiscoveredPrinter>(); private AutoResetEvent discoCompleteEvent = new AutoResetEvent(false); public void DiscoveryError(string message) { Console.WriteLine($"An error occurred during discovery: {message}."); discoCompleteEvent.Set(); } public void DiscoveryFinished() { discoCompleteEvent.Set(); } public void FoundPrinter(DiscoveredPrinter printer) { printers.Add(printer); } public List<DiscoveredPrinter> DiscoveredPrinters { get => printers; } public AutoResetEvent DiscoveryCompleteEvent { get => discoCompleteEvent; } } }