AspComet.Client.IsSubscribedTo C# (CSharp) Method

IsSubscribedTo() public method

public IsSubscribedTo ( string channel ) : bool
channel string
return bool
        public bool IsSubscribedTo(string channel)
        {
            // TODO: Change to use ChannelName class which supports wild cards
            return this.subscriptions.Contains(channel);
        }