TeamFoundationSecurityNamespace.SetAccessControlEntries Method (TeamFoundationRequestContext, String, IEnumerable<AccessControlEntry>, Boolean, Boolean)

Sets the provided AccessControlEntries in this SecurityNamespace.

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

Syntax

'Declaration
Public Function SetAccessControlEntries ( _
    requestContext As TeamFoundationRequestContext, _
    token As String, _
    accessControlEntries As IEnumerable(Of AccessControlEntry), _
    merge As Boolean, _
    throwOnInvalidIdentity As Boolean _
) As IEnumerable(Of AccessControlEntry)
public IEnumerable<AccessControlEntry> SetAccessControlEntries(
    TeamFoundationRequestContext requestContext,
    string token,
    IEnumerable<AccessControlEntry> accessControlEntries,
    bool merge,
    bool throwOnInvalidIdentity
)
public:
IEnumerable<AccessControlEntry^>^ SetAccessControlEntries(
    TeamFoundationRequestContext^ requestContext, 
    String^ token, 
    IEnumerable<AccessControlEntry^>^ accessControlEntries, 
    bool merge, 
    bool throwOnInvalidIdentity
)
member SetAccessControlEntries : 
        requestContext:TeamFoundationRequestContext * 
        token:string * 
        accessControlEntries:IEnumerable<AccessControlEntry> * 
        merge:bool * 
        throwOnInvalidIdentity:bool -> IEnumerable<AccessControlEntry> 
public function SetAccessControlEntries(
    requestContext : TeamFoundationRequestContext, 
    token : String, 
    accessControlEntries : IEnumerable<AccessControlEntry>, 
    merge : boolean, 
    throwOnInvalidIdentity : boolean
) : IEnumerable<AccessControlEntry>

Parameters

  • token
    Type: System.String

    The token for the AccessControlList to set the AccessControlEntry on.

  • merge
    Type: System.Boolean

    If merge is true and a preexisting AccessControlEntry for the descriptor is found, the two AccessControlEntries will be merged. When merging AccessControlEntries, if there is a conflict in permissions, the new permissions will take precedence over the old permissions. If merge is false and a preexisting AccessControlEntry for the descriptor is found, it will be dropped and the passed in AccessControlEntry will be the only AccessControlEntry that remain for this descriptor on this AccessControlList.

  • throwOnInvalidIdentity
    Type: System.Boolean

    If an ace is encountered with a reference to an invalid identity this controls whether the method throws or just removes the identities.

Return Value

Type: System.Collections.Generic.IEnumerable<AccessControlEntry>
The new or updated AccessControlEntires that were set in the SecurityNamespace.

.NET Framework Security

See Also

Reference

TeamFoundationSecurityNamespace Class

SetAccessControlEntries Overload

Microsoft.TeamFoundation.Framework.Server Namespace