AccessControlList Class
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 | |
---|---|---|
AccessControlList() | ||
AccessControlList(String, Boolean) | Creates a new AccessControlList. | |
AccessControlList(String, Boolean, IEnumerable<AccessControlEntry>) | Builds an instance of an AccessControlList. |
Top
Properties
Name | Description | |
---|---|---|
AccessControlEntries | Returns a copy of the list of permissions for users of this token. | |
InheritPermissions | True if the given token inherits permissions from parents. | |
Token | The token that this AccessControlList is for. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
QueryAccessControlEntries | Returns the AccessControlEntries for the descriptors provided. | |
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. | |
RemoveAccessControlEntry | Removes the AccessControlEntry from this AccessControlList that applies to the given descriptor. | |
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. | |
SetAccessControlEntries | Sets the provided AccessControlEntry in this AccessControlList. | |
SetAccessControlEntry | Sets the provided AccessControlEntry in this AccessControlList. | |
SetPermissions | Sets a permission for the descriptor on this AccessControlList. | |
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.