An easy one if you that know how, but I dont.
I've looked through the docs but still can't work it out.
I'm using the below to create channels on an SDK server.
Code:
Connection.CreateChannel(freq, null,
topic: "TestChannels",
description: "TestChannels",
isPermanent: false,
isSemiPermanent: false,
password: null);
Works great but I'd like to create a channel and a subchannel below it.
Code:
Connection.CreateChannel(freq, WHAT SHOULD GO HERE?,
topic: "TestChannels",
description: "TestChannels",
isPermanent: false,
isSemiPermanent: false,
password: null);
Any help appreciated.