Share via


ClaimsProvider.CreateDescriptor Method (TeamFoundationRequestContext, String)

A provider may implement [CreateDescriptor] if they support resolving an identity's generalized display name to a descriptor. This enables TFS to take a display name for an unknown user and resolve it using the provider to a fully qualified identity.

NOTE: You should return NULL if you cannot resolve the display name to a unique user.

Namespace:  Microsoft.TeamFoundation.Framework.Server
Assembly:  Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)

Syntax

'Declaration
Public Function CreateDescriptor ( _
    requestContext As TeamFoundationRequestContext, _
    displayName As String _
) As IdentityDescriptor
public IdentityDescriptor CreateDescriptor(
    TeamFoundationRequestContext requestContext,
    string displayName
)
public:
virtual IdentityDescriptor^ CreateDescriptor(
    TeamFoundationRequestContext^ requestContext, 
    String^ displayName
) sealed
abstract CreateDescriptor : 
        requestContext:TeamFoundationRequestContext * 
        displayName:string -> IdentityDescriptor  
override CreateDescriptor : 
        requestContext:TeamFoundationRequestContext * 
        displayName:string -> IdentityDescriptor
public final function CreateDescriptor(
    requestContext : TeamFoundationRequestContext, 
    displayName : String
) : IdentityDescriptor

Parameters

Return Value

Type: Microsoft.TeamFoundation.Framework.Server.IdentityDescriptor

Implements

IIdentityProvider.CreateDescriptor(TeamFoundationRequestContext, String)

.NET Framework Security

See Also

Reference

ClaimsProvider Class

CreateDescriptor Overload

Microsoft.TeamFoundation.Framework.Server Namespace