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 web service 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 SecurityNamespace.

Inheritance Hierarchy

System.Object
  Microsoft.TeamFoundation.Framework.Client.AccessControlList

Namespace:  Microsoft.TeamFoundation.Framework.Client
Assembly:  Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.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
Protected method AccessControlList()
Public method AccessControlList(String, Boolean) Creates a new AccessControlList
Public method AccessControlList(String, Boolean, IEnumerable<AccessControlEntry>) Builds an instance of an AccessControlList

Top

Properties

  Name Description
Public property AccessControlEntries The list of AccessControlEntries that apply to this AccessControlList.
Protected property IncludeExtendedInfoForAces
Public property InheritPermissions True if this AccessControlList inherits permissions from parents.
Public property Token The token that this AccessControlList is for.

Top

Methods

  Name Description
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method QueryAccessControlEntries Returns the AccessControlEntries for the descriptors provided.
Public method 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.
Public method RemoveAccessControlEntry Removes the AccessControlEntry from this AccessControlList that applies to the given descriptor.
Public method 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.
Public method SetAccessControlEntries Sets the provided AccessControlEntry in this AccessControlList.
Public method SetAccessControlEntry Sets the provided AccessControlEntry in this AccessControlList.
Public method SetPermissions Sets a permission for the descriptor on this AccessControlList.
Public method 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.

See Also

Reference

Microsoft.TeamFoundation.Framework.Client Namespace