Lines Matching refs:Client
69 private Client client;
80 [DllImport ("avahi-client")]
81 private static extern IntPtr avahi_service_browser_new (IntPtr client, int iface, int proto, byte[] type,
86 [DllImport ("avahi-client")]
118 public ServiceBrowser (Client client, string type) : this (client, type, client.DomainName)
122 public ServiceBrowser (Client client, string type, string domain) : this (client, -1, Protocol.Unspecified,
127 public ServiceBrowser (Client client, int iface, Protocol proto, string type, string domain, LookupFlags flags)
129 this.client = client;
150 if (client.Handle == IntPtr.Zero || handle != IntPtr.Zero ||
154 lock (client) {
155 handle = avahi_service_browser_new (client.Handle, iface, (int) proto,
160 client.ThrowError ();
166 if (client.Handle != IntPtr.Zero && handle != IntPtr.Zero &&
169 lock (client) {