public WelcomeScreen() { OnClientUpdated += (s, e) => { Channels.SetClientsInList(Client); }; }
public DiscordTemplateGuild() { OnClientUpdated += (sender, e) => { Roles.SetClientsInList(Client); Channels.SetClientsInList(Client); }; }
public DiscordTemplateGuild() { OnClientUpdated += (sender, e) => { Roles.SetClientsInList(Client); Channels.SetClientsInList(Client); }; JsonUpdated += (sender, json) => { Channels = json.Value <JArray>("channels").PopulateListJson <GuildChannel>(); }; }
public SocketGuild() { OnClientUpdated += (sender, e) => Channels.SetClientsInList(Client); }