Interface IIdentityDescriptorService
Summary description for IIdentityService.
Inherited Members
System.IDisposable.Dispose()
Namespace: ImageVault.Web.Security
Assembly: ImageVault.Web.dll
Syntax
public interface IIdentityDescriptorService : IDisposable
Methods
FindIdentitiesAsync(String, Int32)
Searches the user/role/group catalog for items matching the supplied search string.
Declaration
Task<IList<IClaimDescriptor>> FindIdentitiesAsync(string searchString, int maxHits)
Parameters
Type | Name | Description |
---|---|---|
System.String | searchString | The string to search for |
System.Int32 | maxHits | The maximum number of identities to return |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<System.Collections.Generic.IList<IClaimDescriptor>> | A System.Collections.Generic.IList<T> of IClaimDescriptor |