ITeamFoundationTeamService Interface
Namespace: Microsoft.TeamFoundation.Server.Core
Assembly: Microsoft.TeamFoundation.Server.Core (in Microsoft.TeamFoundation.Server.Core.dll)
Syntax
'Declaration
<DefaultServiceImplementationAttribute(GetType(TeamFoundationTeamService))> _
Public Interface ITeamFoundationTeamService _
Inherits ITeamFoundationService
[DefaultServiceImplementationAttribute(typeof(TeamFoundationTeamService))]
public interface ITeamFoundationTeamService : ITeamFoundationService
[DefaultServiceImplementationAttribute(typeof(TeamFoundationTeamService))]
public interface class ITeamFoundationTeamService : ITeamFoundationService
[<DefaultServiceImplementationAttribute(typeof(TeamFoundationTeamService))>]
type ITeamFoundationTeamService =
interface
interface ITeamFoundationService
end
public interface ITeamFoundationTeamService extends ITeamFoundationService
The ITeamFoundationTeamService type exposes the following members.
Methods
Name | Description | |
---|---|---|
CheckTeamName | ||
CreateTeam | Creates a Team on server with optional properties. | |
GetDefaultTeam | Gets default team for the project. | |
GetDefaultTeamId | Returns default team ID for the project. | |
GetTeamAdmins | Gets all the identities that are administrators of the give Team group identity. | |
HasTeamPermission | Determines whether or not a user has the specified permission on this team. | |
IsDefaultTeam | Checks to see if identity is a default team for project it is associated with. | |
IsValidTeamName | ||
QueryTeams(TeamFoundationRequestContext, IdentityDescriptor) | Queries all Team groups that given user is a member of. | |
QueryTeams(TeamFoundationRequestContext, Dictionary<String, Guid>) | ||
QueryTeams(TeamFoundationRequestContext, String) | Queries all Team groups in given project. | |
ReadTeam(TeamFoundationRequestContext, IdentityDescriptor, IEnumerable<String>) | ||
ReadTeam(TeamFoundationRequestContext, Guid, IEnumerable<String>) | ||
ReadTeam(TeamFoundationRequestContext, String, String, IEnumerable<String>) | Reads team group by name in given project. | |
ReadTeamMembers | Gets team member identities. | |
ReadTeams | Reads team groups by TeamFoundationId. | |
ServiceEnd | ServiceEnd is called when the Host is being Shutdown and this service should free all resources it is holding onto. (Inherited from ITeamFoundationService.) | |
ServiceStart | ServiceStart is called when the service is initialized. If the service is intialized asynchronously it must implement Service_Ready which is used to determine when the service is ready for users to access it. (Inherited from ITeamFoundationService.) | |
SetDefaultTeam | Sets default team for the project. | |
SetDefaultTeamId | Sets default team for the project. | |
UpdateTeam | Updates underlying identity properties. |
Top