Specifies user or group credentials that control editing rights within a PermissionRange.
Definition
Namespace:Telerik.Windows.Documents.Flow.Model.Protection
Assembly:Telerik.Windows.Documents.Flow.dll
Syntax:
C#
public class PermissionRangeCredentials
Inheritance: objectPermissionRangeCredentials
Constructors
Creates credentials that grant editing permissions to all users in the specified group category.
C#
public PermissionRangeCredentials(EditingGroup editingGroup)
The editing group.
Creates credentials that grant editing permissions to a specific user identified by DOMAIN\name, name, or email.
C#
public PermissionRangeCredentials(string editor)
The editor. Could be defined as DOMAIN\name, name or email.
Properties
Gets or sets the group category granted editing permissions, or null if using individual user credentials.
C#
public EditingGroup? EditingGroup { get; set; }
The editing group.