X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-sharp%2FBrowserBase.cs;h=3af00867b3865ed56728d261f2fa9a08c41e080f;hb=76256da5f1fc4afe60ff95bd8a98b9a41fa3e148;hp=2968114294c337e018d6e213a48e1df6480fe216;hpb=a4c2edcece605452c4d72da36b8c39da5e514314;p=catta diff --git a/avahi-sharp/BrowserBase.cs b/avahi-sharp/BrowserBase.cs index 2968114..3af0086 100644 --- a/avahi-sharp/BrowserBase.cs +++ b/avahi-sharp/BrowserBase.cs @@ -1,5 +1,3 @@ -/* $Id$ */ - /*** This file is part of avahi. @@ -27,7 +25,6 @@ namespace Avahi { public event EventHandler CacheExhausted; public event EventHandler AllForNow; - public event EventHandler NotFound; public event EventHandler Failed; internal void EmitBrowserEvent (BrowserEvent bevent) @@ -41,10 +38,6 @@ namespace Avahi if (AllForNow != null) AllForNow (this, new EventArgs ()); break; - case BrowserEvent.NotFound: - if (NotFound != null) - NotFound (this, new EventArgs ()); - break; case BrowserEvent.Failure: if (Failed != null) Failed (this, new EventArgs ());