CwIRC.Interface.PART C# (CSharp) 메소드

PART() 공개 메소드

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
리턴 void
        public void PART(string p_channel, string p_partMessage)
        {
            SendData("PART #" + p_channel + " :" + p_partMessage);
        }