コード例 #1
0
ファイル: Response.cs プロジェクト: maritaria/HotBot
		internal string ReadHostmask(string message)
		{
			if (message.StartsWith(":"))
			{
				string[] prefixParts = message.SplitOnce(" ");
				HostMask = new HostMask(prefixParts[0]);
				message = prefixParts[1];
			}
			return message;
		}
コード例 #2
0
ファイル: PingResponder.cs プロジェクト: maritaria/HotBot
		private void SendPong(IrcConnection connection, HostMask hostMask)
		{
			if (hostMask == null)
			{
				connection.SendCommand(PingReplyCommand);
			}
			else
			{
				connection.SendCommand($"{PingReplyCommand} {hostMask.Hostname}");
			}
		}