Group.Contributors property
Returns the SPAcl indicating the users who are contributors to the current Group object.
Namespace: Microsoft.SharePoint.Taxonomy
Assembly: Microsoft.SharePoint.Taxonomy (in Microsoft.SharePoint.Taxonomy.dll)
Syntax
'Declaration
Public ReadOnly Property Contributors As SPAcl(Of TaxonomyRights)
Get
'Usage
Dim instance As Group
Dim value As SPAcl(Of TaxonomyRights)
value = instance.Contributors
public SPAcl<TaxonomyRights> Contributors { get; }
Property value
Type: Microsoft.SharePoint.Administration.SPAcl<TaxonomyRights>
The SPAcl indicating the users who are contributors for the current Group object.
Exceptions
Exception | Condition |
---|---|
UnauthorizedAccessException | The current user has insufficient permissions to perform this operation. |
Remarks
The SPAcl cannot be set directly.Any permission changes should be made using theAddContributor and DeleteContributor methods. Contributors or users who can modify the set of contributors can access this property. Specifically, the current user must have TaxonomyRights.AddTermSetEditPermissions permission or TaxonomyRights.Contributor permission to access this property.