Leadtools.Dicom.WCF Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
GetRolesPatientsPermissions Method
See Also 
Leadtools.Dicom.WCF Namespace > DICOMService Class : GetRolesPatientsPermissions Method



roleName
A System.String specifying the role name to get its patients access permissions. This value can be null to retrieve permissions assigned for all roles.
patientId
The patient ID which permissions are to be retrieved. This value can be null to retrieve permissions for all patients..
extraData
User custom data.
roleName
A System.String specifying the role name to get its patients access permissions. This value can be null to retrieve permissions assigned for all roles.
patientId
The patient ID which permissions are to be retrieved. This value can be null to retrieve permissions for all patients..
extraData
User custom data.
Retrieves the permissions to access patients information for a role.

Syntax

Visual Basic (Declaration) 
Public Overridable Function GetRolesPatientsPermissions( _
   ByVal roleName As String, _
   ByVal patientId As String, _
   ByVal extraData As String _
) As List(Of RolesPatientsPermission)
Visual Basic (Usage)Copy Code
Dim instance As DICOMService
Dim roleName As String
Dim patientId As String
Dim extraData As String
Dim value As List(Of RolesPatientsPermission)
 
value = instance.GetRolesPatientsPermissions(roleName, patientId, extraData)
C# 
public virtual List<RolesPatientsPermission> GetRolesPatientsPermissions( 
   string roleName,
   string patientId,
   string extraData
)
C++/CLI 
public:
virtual List<RolesPatientsPermission^>^ GetRolesPatientsPermissions( 
   String^ roleName,
   String^ patientId,
   String^ extraData
) 

Parameters

roleName
A System.String specifying the role name to get its patients access permissions. This value can be null to retrieve permissions assigned for all roles.
patientId
The patient ID which permissions are to be retrieved. This value can be null to retrieve permissions for all patients..
extraData
User custom data.

Return Value

A list of Leadtools.Dicom.Services.DataTypes.RolesPatientsPermission objects specifying the patients permissions for the specified role(s).

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also