Exemple #1
0
        public SsdpFinder()
        {
            Uow = new RssdpUow();

            deviceLocator = new SsdpDeviceLocator();
            deviceLocator.DeviceAvailable += DeviceLocator_DeviceAvailable;
        }
Exemple #2
0
        public MdnsLookup(Auow workflow)
        {
            Uow  = workflow;
            mdns = new MulticastService();
            mdns.AnswerReceived += Mdns_AnswerReceived;

            sd = new ServiceDiscovery(mdns);
            sd.ServiceInstanceDiscovered += Sd_ServiceInstanceDiscovered;
        }
Exemple #3
0
 public UpnpSearcher()
 {
     deviceLocator = new SsdpDeviceLocator();
     deviceLocator.DeviceAvailable += DeviceLocator_DeviceAvailable;
     auow = new UpnpUow();
 }