コード例 #1
0
 public DiscordClientChannelsService(DiscordSocketClient client, IDiscordClientUsersService discordClientUsersService, UserContextsFactory userContextsFactory, CommandParser commandParser)
 {
     this._client = client;
     this._discordClientUsersService = discordClientUsersService;
     this._userContextsFactory       = userContextsFactory;
     this._commandParser             = commandParser;
     this._client.ChannelCreated    += x => this.ChannelCreated(x);
 }
コード例 #2
0
 public DiscordClientChannelsService(DiscordSocketClient client, IDiscordClientUsersService discordClientUsersService)
 {
     this._client = client;
     this._discordClientUsersService = discordClientUsersService;
 }
コード例 #3
0
 public DiscordClientChannelsService(DiscordSocketClient client, IDiscordClientUsersService discordClientUsersService)
 {
     this._client = client;
     this._discordClientUsersService = discordClientUsersService;
     this._client.ChannelCreated    += x => this.ChannelCreated(x);
 }