IGroupSecurityService Interface
Note: This API is now obsolete.
Namespace: Microsoft.TeamFoundation.Server
Assembly: Microsoft.TeamFoundation.Client (in Microsoft.TeamFoundation.Client.dll)
Syntax
'Declaration
<ObsoleteAttribute("IGroupSecurityService is obsolete. Please use the IIdentityManagementService or ISecurityService instead.", _
False)> _
Public Interface IGroupSecurityService
[ObsoleteAttribute("IGroupSecurityService is obsolete. Please use the IIdentityManagementService or ISecurityService instead.",
false)]
public interface IGroupSecurityService
[ObsoleteAttribute(L"IGroupSecurityService is obsolete. Please use the IIdentityManagementService or ISecurityService instead.",
false)]
public interface class IGroupSecurityService
[<ObsoleteAttribute("IGroupSecurityService is obsolete. Please use the IIdentityManagementService or ISecurityService instead.",
false)>]
type IGroupSecurityService = interface end
public interface IGroupSecurityService
The IGroupSecurityService type exposes the following members.
Methods
Name | Description | |
---|---|---|
AddMemberToApplicationGroup | Adds an identity (e.g. a user or a group) to a TFS application group. | |
Convert(Identity) | Convert method for backward compatibility scenarios that involve a Rosario client connecting to a Visual Studio 2005 or Visual Studio 2008 server. | |
Convert(TeamFoundationIdentity) | Convert method. | |
CreateApplicationGroup | Creates a TFS application group. | |
DeleteApplicationGroup | Deletes a TFS application group. | |
GetChangedIdentities | ||
IsIdentityCached | Checks whether an identity is cached. | |
IsMember | Checks whether an identity (e.g. a user or a group) is a member (either direct or indirect) of a group. | |
ListApplicationGroups | Lists all TFS application groups in the specified scope. | |
ReadIdentities | Search for a list of identities. While ReadIdentity searches for only one identity at a time, this methods allows for searching on multiple identities. | |
ReadIdentity | Searches for an identity. | |
ReadIdentityFromSource | ||
RemoveMemberFromApplicationGroup | Removes an identity (e.g. a user or a group) from a TFS application group. | |
UpdateApplicationGroup | Updates a property of a TFS application group. |
Top