Beispiel #1
0
 public IEnumerable <ClientData> ClientList(ClientListOptions options) => Send <ClientData>("clientlist",
                                                                                            NoParameter, options);
Beispiel #2
0
 /// <summary>Displays a list of clients online on a virtual server including their ID, nickname, status flags, etc.
 /// The output can be modified using several command options.
 /// Please note that the output will only contain clients which are currently in channels you're able to subscribe to.</summary>
 public R <IEnumerable <ClientData>, CommandError> ClientList(ClientListOptions options = 0)
 => Send <ClientData>("clientlist",
                      new CommandOption(options));
Beispiel #3
0
 /// <summary>Displays a list of clients online on a virtual server including their ID, nickname, status flags, etc.
 /// The output can be modified using several command options.
 /// Please note that the output will only contain clients which are currently in channels you're able to subscribe to.</summary>
 public Task <R <ClientList[], CommandError> > ClientList(ClientListOptions options = 0)
 => Send <ClientList>("clientlist",
                      new CommandOption(options));