sharp-chat/SharpChat.Protocol.IRC/ClientCommands/OperCommand.cs

20 lines
567 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using SharpChat.Protocol.IRC.Replies;
using System.Linq;
namespace SharpChat.Protocol.IRC.ClientCommands {
public class OperCommand : IClientCommand {
public const string NAME = @"OPER";
public string CommandName => NAME;
public bool RequireSession => true;
public void HandleCommand(ClientCommandContext ctx) {
ctx.Connection.SendReply(
ctx.Arguments.Count() < 2
? new NeedMoreParamsReply(NAME)
: new NoOperatorHostReply()
);
}
}
}