UserSecurityServicesSetRolePermissions Method |
Sets the security permissions for a security role. All existing permissions associated to
the role will be removed and replaced by the new list or permissions.
Namespace:
FactoryLogix.xTend.Configuration
Assembly:
FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.245.0.0 (8.245.0.0)
Syntax public void SetRolePermissions(
Guid sessionId,
string roleName,
IEnumerable<Permission> permissions
)
Public Sub SetRolePermissions (
sessionId As Guid,
roleName As String,
permissions As IEnumerable(Of Permission)
)
public:
virtual void SetRolePermissions(
Guid sessionId,
String^ roleName,
IEnumerable<Permission^>^ permissions
) sealed
abstract SetRolePermissions :
sessionId : Guid *
roleName : string *
permissions : IEnumerable<Permission> -> unit
override SetRolePermissions :
sessionId : Guid *
roleName : string *
permissions : IEnumerable<Permission> -> unit
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - roleName
- Type: SystemString
The friendly name of the security role - permissions
- Type: System.Collections.GenericIEnumerablePermission
A list of Permission objects that are to be associated to the specified security role.>
Exceptions See Also