ResolveUserGroups Method
Overloads
ResolveUserGroups(Guid, String) |
This method returns all groups that a certain user is a member of. |
ResolveUserGroups(Guid, String)
This method returns all groups that a certain user is a member of.
Declaration
List<string> ResolveUserGroups(Guid dscID, string user)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | dscID |
The Directory Service Connector to use. |
System.String | user |
The name of the user, including domain name. |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.String> |
A list of group names found. |
Remarks
security
Requires membership of local groups QlikView Management API and QlikView Administrator.
Examples
The service key injection is assumed to be handled behind the scenes. For an example of how to inject the service key, see Samples.
This example retrieves all groups for a single user and prints them to the console.
using System;
using System.Collections.Generic;
using System.Linq;
using QMSAPI;
class Program
{
static void Main(string[] args)
{
try
{
// create a QMS API client
IQMS apiClient = new QMSClient();
//retrieve a time limited service key
ServiceKeyClientMessageInspector.ServiceKey = apiClient.GetTimeLimitedServiceKey();
ServiceInfo dscService = apiClient.GetServices(ServiceTypes.QlikViewDirectoryServiceConnector).FirstOrDefault();
if (dscService != null)
{
List<string> groups = apiClient.ResolveUserGroups(dscService.ID, "corpdomain\\johnb");
groups.ForEach(Console.WriteLine);
}
}
catch (Exception ex)
{
Console.WriteLine("An exception occurred: " + ex.Message);
}
// wait for user to press any key
Console.ReadLine();
}
}
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!