IAccessControlService Interface
The Access Control service.
Namespace: Microsoft.TeamFoundation.Framework.Client
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
Public Interface IAccessControlService
public interface IAccessControlService
public interface class IAccessControlService
type IAccessControlService = interface end
public interface IAccessControlService
Methods
Name | Description | |
---|---|---|
DeleteServiceIdentity(Guid) | Deletes the service identity with the given ID. | |
DeleteServiceIdentity(ServiceIdentity) | Deletes the given service identity. | |
ProvisionServiceIdentity() | Provision the default service identity. | |
ProvisionServiceIdentity(String) | Provision a service identity with the given name. | |
ProvisionServiceIdentity(ServiceIdentityInfo) | Provisions a service identity with the given information. | |
ProvisionServiceIdentity(String, String) | Provisions a service identity with the given name and password. | |
ProvisionServiceIdentity(ServiceIdentityInfo, array<IdentityDescriptor[]) | Provisions a service identity with the given information.Adds the service identity to the given groups. | |
ProvisionServiceIdentity(String, String, array<IdentityDescriptor[]) | Provisions a service identity with the given name and password.Adds the service identity to the given groups. | |
QueryServiceIdentities(array<Guid[], Boolean) | Queries the service identities with the given IDs.Optionally includes membership details. | |
QueryServiceIdentities(array<String[], Boolean) | Queries the service identities with the given names.Optionally includes membership details. | |
QueryServiceIdentity(Guid) | Queries the service identity with the given ID. | |
QueryServiceIdentity(String) | Queries the service identity with the given name. | |
QueryServiceIdentity(Guid, Boolean) | Queries the service identity with the given ID.Optionally includes membership details. | |
QueryServiceIdentity(String, Boolean) | Queries the service identity with the given name.Optionally includes membership details. |
Top