Returns the AccessControlEntries for the descriptors provided.
Namespace:  Microsoft.TeamFoundation.Framework.Client
Assembly:  Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Function QueryAccessControlEntries ( _
    descriptors As IEnumerable(Of IdentityDescriptor) _
) As IEnumerable(Of AccessControlEntry)
public IEnumerable<AccessControlEntry> QueryAccessControlEntries(
    IEnumerable<IdentityDescriptor> descriptors
)
public:
IEnumerable<AccessControlEntry^>^ QueryAccessControlEntries(
    IEnumerable<IdentityDescriptor^>^ descriptors
)
member QueryAccessControlEntries : 
        descriptors:IEnumerable<IdentityDescriptor> -> IEnumerable<AccessControlEntry> 
public function QueryAccessControlEntries(
    descriptors : IEnumerable<IdentityDescriptor>
) : IEnumerable<AccessControlEntry>
Parameters
- descriptors 
 Type: System.Collections.Generic.IEnumerable<IdentityDescriptor>- The descriptors to query AccessControlEntries for. If null is passed in for this, AccessControlEntries for all descriptors will be returned. 
Return Value
Type: System.Collections.Generic.IEnumerable<AccessControlEntry>
The AccessControlEntries for the descriptors provided. If no AccessControlEntry exists for a given descriptor in this AccessControlList then an empty AccessControlEntry will be returned. The AccessControlEntries are retuned in the same order that the descriptors are passed in.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.