c# – 为什么我的IRC机器人没有连接?

前端之家收集整理的这篇文章主要介绍了c# – 为什么我的IRC机器人没有连接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public static string SERVER = "irc.rizon.net";
private static int PORT = 6667;
private static string USER = "Test C# Irc bot";
private static string NICK = "Testing";
private static string CHANNEL = "#Test0x40"; 

public static void Main(string[] args)
{
    NetworkStream stream;
    TcpClient irc;
    StreamReader reader;
    StreamWriter writer;

    irc = new TcpClient(SERVER,PORT);
    stream = irc.GetStream();
    reader = new StreamReader(stream);
    writer = new StreamWriter(stream);

    writer.WriteLine("NICK " + NICK);
    writer.Flush();
    writer.WriteLine("JOIN " + CHANNEL);
    writer.Flush(); 

    Console.ReadKey(true);
}

为什么我的IRC机器人没有连接?

解决方法

IRC协议需要CR / LF对,而StreamWriter的默认行为只是换行.您应该像这样创建StreamWriter:
writer = new StreamWriter(stream) { NewLine = "\r\n",AutoFlush = true };

此外,您可能应该在加入频道之前使用USER命令指定用户名,但我不确定是否完全有必要:

writer.WriteLine("USER username +mode * :Real Name");
原文链接:https://www.f2er.com/csharp/99512.html

猜你在找的C#相关文章