ChatGui.OnPrivateMessage C# (CSharp) Method

OnPrivateMessage() public method

public OnPrivateMessage ( string sender, object message, string channelName ) : void
sender string
message object
channelName string
return void
    public void OnPrivateMessage(string sender, object message, string channelName)
    {
        // as the ChatClient is buffering the messages for you, this GUI doesn't need to do anything here
        // you also get messages that you sent yourself. in that case, the channelName is determinded by the target of your msg
    }