IMPORTANT: This version of Sitefinity CMS is out of support and the respective product documentation is no longer maintained and can be outdated. Use the version selector to view a supported product version.
You can use the fluent API to modify the permissions of dynamic content items. The entry point for managing a dynamic content item’s permissions is the ManagePermissions() extension method on DynamicContent, which is available in the Telerik.Sitefinity.Model namespace.
In the following example the permissions of a specific Article dynamic content item, are being modified by allowing the Designers role to view it:
The example above implicitly breaks the permission inheritance for the specific item. This is done by copying the permissions of the parent item and assigning those copies as the item’s own Permissions collection. Afterwards, the new permission objects are modified so that the View actions is allowed for the Designers role.
In combination with dynamic content events, you can achieve more complex scenarios - for example, defaulting the permissions of all items of specific type to a desired state, as in the following example that is taken from a Global.asax.cs file.
As you can see in the example above, the creating event is used, which is raised just before the transaction, in which an item has been created is committed. This is why no SaveChanges call is required for the changes to take effect.
Back To Top
To submit feedback, please update your cookie settings and allow the usage of Functional cookies.
Your feedback about this content is important
Dynamic content items