IrcClient.notice

Send notices to a channel or user. Each line in message is sent as one notice. Lines exceeding the IRC _message length limit will be split up into multiple notices.

  1. void notice(in char[] target, in char[] message)
    class IrcClient
    void
    notice
    (
    in char[] target
    ,
    in char[] message
    )
  2. void notice(in char[] target, Range message)

Parameters

target
Type: char[]

channel or nick name to notice

message
Type: char[]

notices(s) to send. Can contain multiple lines.

Throws

$(DPREF exception, UnconnectedClientException) if this client is not connected.

Meta