CwIRC.Interface.PART C# (CSharp) Method

PART() public method

Sends the PART message to the IRC server, to leave the specified channel with the specified leaving message.
public PART ( string p_channel, string p_partMessage ) : void
p_channel string The channel to leave.
p_partMessage string
return void
        public void PART(string p_channel, string p_partMessage)
        {
            SendData("PART #" + p_channel + " :" + p_partMessage);
        }