WindowsAuthenticationProviderFindClaims Method

Find claims that can be returned by the authentication provider.

Definition

Namespace: Gemstone.Security.AuthenticationProviders
Assembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.169 -- Release Build+43e28b5fd7125e5e0921cb1e975c038b7a974af2
public IEnumerable<IProviderClaim> FindClaims(
	string claimType,
	string searchText
)

Parameters

claimType  String
The type of claim to search for
searchText  String
Text used to narrow the results for the search for claims

Return Value

IEnumerableIProviderClaim
A collection of claims matching the search text.

Implements

IAuthenticationProviderFindClaims(String, String)

Remarks

Search text can include asterisks as wildcards. To include a literal asterisk, use backslash as the escape character. A literal backslash can be escaped by another backslash. Any other character escaped by a backslash matches the character; the backslash will be removed.

Exceptions

ArgumentOutOfRangeExceptionThe claim type is not supported

See Also