New to Telerik Document ProcessingStart a free 30-day trial

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)
Parameters:editingGroupEditingGroup

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)
Parameters:editorstring

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; }
Property Value:

The editing group.

Gets or sets the user identifier (DOMAIN\name, name, or email) granted editing permissions, or null if using group-based credentials.

C#
public string Editor { get; set; }
Property Value:

The editor.