SPClaimProvider.SupportsResolve Property
When implemented in a derived class, determines whether the claims provider supports resolve operations.
Namespace: Microsoft.SharePoint.Administration.Claims
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property SupportsResolve As Boolean
Get
'Usage
Dim instance As SPClaimProvider
Dim value As Boolean
value = instance.SupportsResolve
public abstract bool SupportsResolve { get; }
Property Value
Type: System.Boolean
A Boolean that represents whether the claims provider supports resolve operations. true if the claims provider supports resolve operations; otherwise false.
Remarks
Claims can be displayed in the People Picker control through claims picking. Claims picking allows an application to surface claims in the People Picker control.In claims picking, a claims provider provides listing, resolve, search and friendly display of claims functionality in the People Picker control.
A People Picker with claims picking functionality is sometimes referred to as a claim picker. If you want to be able to resolve claims by using the type-in control of the claims picker, you must implement this property and the FillResolv() method. The SupportResolv() property must return true as shown in the following example.
Examples
// Returns true if you support claims resolution in
// the People Picker control.
public override bool SupportsResolve
{
get { return true; }
}