Table of Contents

Class UserRoleManager

Namespace
Dynamicweb.Security.UserManagement.UserRoles
Assembly
Dynamicweb.Core.dll
public static class UserRoleManager
Inheritance
UserRoleManager
Inherited Members

Methods

GetUserRoleById(string)

Gets the user role by id.

public static UserRole? GetUserRoleById(string id)

Parameters

id string

Unique identifier

Returns

UserRole

User role, if found; otherwise, null.

GetUserRoles()

Gets all user roles.

public static IEnumerable<UserRole> GetUserRoles()

Returns

IEnumerable<UserRole>

A collection of UserRole.

To top