The AccessControlList class is meant to associate a set of AccessControlEntries with a security token and its inheritance settings. It is important to note that the AccessControlList class does not talk to a database when its methods are called.
It provides a staging area for changes to the AccessControlEntries for a secured token. Once changes are made to an AccessControlList it can be saved to the web service by passing it into a TeamFoundationSecurityNamespace.
Inheritance Hierarchy
System.Object
  Microsoft.TeamFoundation.Framework.Server.AccessControlList
    Microsoft.TeamFoundation.Framework.Server.AccessControlListDetails
Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Public Class AccessControlList
public class AccessControlList
public ref class AccessControlList
type AccessControlList =  class end
public class AccessControlList
The AccessControlList type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| .gif) | AccessControlList() | |
| .gif) | AccessControlList(String, Boolean) | Creates a new AccessControlList. | 
| .gif) | AccessControlList(String, Boolean, IEnumerable<AccessControlEntry>) | Builds an instance of an AccessControlList. | 
Top
Properties
| Name | Description | |
|---|---|---|
| .gif) | AccessControlEntries | Returns a copy of the list of permissions for users of this token. | 
| .gif) | InheritPermissions | True if the given token inherits permissions from parents. | 
| .gif) | Token | The token that this AccessControlList is for. | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | 
| .gif) | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | 
| .gif) | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
| .gif) | GetType | Gets the Type of the current instance. (Inherited from Object.) | 
| .gif) | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | 
| .gif) | QueryAccessControlEntries | Returns the AccessControlEntries for the descriptors provided. | 
| .gif) | QueryAccessControlEntry | Returns the AccessControlEntry for the descriptor provided. If no AccessControlEntry exists for the provided descriptor in this AccessControlList then an empty AccessControlEntry will be returned. | 
| .gif) | RemoveAccessControlEntry | Removes the AccessControlEntry from this AccessControlList that applies to the given descriptor. | 
| .gif) | RemovePermissions | Removes the specified permission bits from the existing allows and denys for this descriptor. If the descriptor is not found, nothing is done and an empty AccessControlEntry is returned. | 
| .gif) | SetAccessControlEntries | Sets the provided AccessControlEntry in this AccessControlList. | 
| .gif) | SetAccessControlEntry | Sets the provided AccessControlEntry in this AccessControlList. | 
| .gif) | SetPermissions | Sets a permission for the descriptor on this AccessControlList. | 
| .gif) | ToString | Returns a string that represents the current object. (Inherited from Object.) | 
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.