PeerCastStation.PCP.PCPYellowPageClient.StopAnnounce C# (CSharp) Method

StopAnnounce() public method

public StopAnnounce ( ) : void
return void
    public void StopAnnounce()
    {
      lock (announcingChannels) {
        foreach (var announcing in announcingChannels) {
          announcing.IsStopped = true;
          UpdateChannelInfo(announcing.Channel, false);
        }
        announcingChannels.Clear();
      }
      if (announceThread!=null && announceThread.IsAlive) {
        announceThread.Join();
      }
    }

Same methods

PCPYellowPageClient::StopAnnounce ( IAnnouncingChannel announcing ) : void