- roleName
- A 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.
| Visual Basic (Declaration) | |
|---|---|
<OperationContractAttribute()> Overridable Function GetRolesPatientsPermissions( _ ByVal roleName As String, _ ByVal patientId As String, _ ByVal extraData As String _ ) As List(Of RolesPatientsPermission) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[OperationContractAttribute()] virtual List<RolesPatientsPermission> GetRolesPatientsPermissions( string roleName, string patientId, string extraData ) | |
| C++/CLI | |
|---|---|
[OperationContractAttribute()] virtual List<RolesPatientsPermission>^ GetRolesPatientsPermissions( String^ roleName, String^ patientId, String^ extraData ) | |
Parameters
- roleName
- A 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 RolesPatientsPermission objects specifying the patients permissions for the specified role(s).Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Vista, Windows Server 2003 family, Windows Server 2008 family
Copy Code