I am using relaybinding to create a ChannelListener.
BasicHttpRelayBinding relayBinding = new BasicHttpRelayBinding();
relayBinding.BuildChannelListener<IReplyChannel>(..., ...);
Now I want to add ConnectionStatusBehavior so that I would know if the connection used by the channel is online or not. Does anyone have any idea how to do this?