public void AddService(System.Net.NetworkInformation.NetworkInterface network, string host, ServiceInfo service)
 {
     _publishers[network].AddService(host, service);
 }
Esempio n. 2
0
 public void AddService(System.Net.NetworkInformation.NetworkInterface network, string host, ServiceInfo service)
 {
     throw new NotImplementedException();
 }
 public void AddService(string host, ServiceInfo service)
 {
     DoForAll(x => x.AddService(host, service));
 }
Esempio n. 4
0
 public void AddService(string host, ServiceInfo service)
 {
     _callbacks.Add(Tuple.Create <string, ServiceCallback>(host, () => service));
     CreateLookup();
 }