sharp-chat/SharpChat/PacketHandlerContext.cs

26 lines
685 B
C#
Raw Normal View History

2024-05-19 21:02:17 +00:00
namespace SharpChat {
public class PacketHandlerContext {
2023-02-16 21:16:06 +00:00
public string Text { get; }
public ChatContext Chat { get; }
public ConnectionInfo Connection { get; }
2023-02-16 21:16:06 +00:00
public PacketHandlerContext(
2023-02-16 21:16:06 +00:00
string text,
ChatContext chat,
ConnectionInfo connection
2023-02-16 21:16:06 +00:00
) {
Text = text;
Chat = chat;
Connection = connection;
2023-02-16 21:16:06 +00:00
}
public bool CheckPacketId(string packetId) {
return Text == packetId || Text.StartsWith(packetId + '\t');
}
public string[] SplitText(int expect) {
return Text.Split('\t', expect + 1);
}
}
}