BitSharper.Discovery.IrcDiscovery.IrcDiscovery C# (CSharp) Method

IrcDiscovery() public method

Finds a list of peers by connecting to an IRC network, joining a channel, decoding the nicks and then disconnecting.
public IrcDiscovery ( string channel, string server = "irc.lfnet.org", int port = 6667 ) : System
channel string The IRC channel to join, either "#bitcoin" or "#bitcoinTEST" for the production and test networks respectively.
server string Name or textual IP address of the IRC server to join.
port int The port of the IRC server to join.
return System
        public IrcDiscovery(string channel, string server = "irc.lfnet.org", int port = 6667)
        {
            _channel = channel;
            _server = server;
            _port = port;
        }