Once connected you can publish messages by calling the ISubscriber.Publish method:
// grab an instance of an ISubscriber
var subscriber = connection.GetSubscriber();
// publish a message to the 'chat' channel
subscriber.Publish("chat", "This is a message")
Consumers can ...