Network
|
The NetworkDiscoverer type exposes the following members.
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 | (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 IPs in printersToFind. | |
FindPrinters(DiscoveryHandler, ListString, Int32) | Sends a discovery request to the list of printer DNS names or IPs in printersToFind. | |
GetHashCode | (Inherited from Object) | |
GetType | (Inherited from Object) | |
LocalBroadcast(DiscoveryHandler) | Sends a local broadcast packet. | |
LocalBroadcast(DiscoveryHandler, Int32) | Sends a local broadcast packet. | |
Multicast(DiscoveryHandler, Int32) | Sends a multicast discovery packet. | |
Multicast(DiscoveryHandler, Int32, Int32) | Sends a multicast discovery packet. | |
SubnetSearch(DiscoveryHandler, String) | Sends a discovery packet to the IPs specified in the subnetRange. | |
SubnetSearch(DiscoveryHandler, String, Int32) | Sends a discovery packet to the IPs specified in the subnetRange. | |
ToString | (Inherited from Object) |
using System; using System.Collections.Generic; using Zebra.Sdk.Printer.Discovery; public class NetworkDiscovererExample { public static void Main(string[] args) { try { Console.WriteLine("Starting printer discovery."); NetworkDiscoveryHandler discoveryHandler = new NetworkDiscoveryHandler(); NetworkDiscoverer.FindPrinters(discoveryHandler); while (!discoveryHandler.DiscoveryComplete) { System.Threading.Thread.Sleep(10); } } catch (DiscoveryException e) { Console.WriteLine(e.ToString()); } } private class NetworkDiscoveryHandler : DiscoveryHandler { private bool discoveryComplete = false; List<DiscoveredPrinter> printers = new List<DiscoveredPrinter>(); public void DiscoveryError(string message) { Console.WriteLine($"An error occurred during discovery: {message}."); discoveryComplete = true; } public void DiscoveryFinished() { foreach (DiscoveredPrinter printer in printers) { Console.WriteLine(printer); } Console.WriteLine($"Discovered {printers.Count} Link-OS™ printers."); discoveryComplete = true; } public void FoundPrinter(DiscoveredPrinter printer) { printers.Add(printer); } public bool DiscoveryComplete { get => discoveryComplete; } } }