Repository.Project.GetUserPermissions

From ReliaWiki
Revision as of 19:12, 9 August 2018 by David J. Groebel (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI.Repository


Returns an array of UserPermissionEnum of all permissions the user has for the specified project. Connected user must have Admin permissions to obtain the list of permissions for another user. Admin permissions are not required to a list of permissions for your own account.

Syntax

.Project.GetUserPermissions(UserLogin, ProjectID)

Parameters

UserLogin

Required. String. The user login (domain\user). If the input is empty then the method returns the projects for the currently connected user.

ProjectID

Required. Integer. The project ID for which permissions are to be checked.

Example

VBA|VB.NET

 'Declare a new Repository object and connect to a ReliaSoft repository. 
  Dim MyRepository As New Repository
  MyRepository.ConnectToAccessRepository("C:\RSRepository1.rsr18")
  
 'Get permissions in the repository for a specified user for a specific project.  
  Dim ListofPermissions() As UserPermissionsEnum
  Dim sUserLogin As String
  Dim iProjectID As Integer
  sUserLogin = "myDomain\TestUser"
   'Get project ID for first project in the list 
  iProjectID = MyRepository.Project.GetAllProjects(0).ID
  ListofPermissions= MyRepository.Project.GetUserAccessibleProjects(sUserLogin, iProjectID)