sharp-chat/SharpChat.Protocol.IRC/Replies/CannotSendToChannelReply.cs

22 lines
598 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
using SharpChat.Channels;
using SharpChat.Protocol.IRC.Channels;
using System;
namespace SharpChat.Protocol.IRC.Replies {
public class CannotSendToChannelReply : Reply {
public const int CODE = 404;
public override int ReplyCode => CODE;
private IChannel Channel { get; }
public CannotSendToChannelReply(IChannel channel) {
Channel = channel ?? throw new ArgumentNullException(nameof(channel));
}
protected override string BuildLine() {
return $@"{Channel.GetIRCName()} :Cannot send to channel";
}
}
}