Add Client To Server Group
This Adds a client to the server group specified with sgid. Please note that a client cannot be added to default groups or template groups.
Parameters:
serverGroupId: The id of the server group
clientDatabaseId: The database id of the client
Sample Code vb.net
Imports TS3QueryLib.Core.Query
...
QueryRunner.AddClientToServerGroup(ByVal serverGroupId As UInteger, ByVal clientDatabaseId As UInteger)
Sample Code C#
using TS3QueryLib.Core.Query;
...
QueryRunner.AddClientToServerGroup(UInteger serverGroupId, UInteger clientDatabaseId);
Examples Coming Soon