Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ClaimSet.FindClaims(String, String) Method

Definition

Namespace:
System.IdentityModel.Claims
Assembly:
System.ServiceModel.Primitives.dll
Assembly:
System.IdentityModel.dll
Package:
System.ServiceModel.Primitives v10.0.652802
Source:
ClaimSet.cs
Source:
ClaimSet.cs
Source:
ClaimSet.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

When overridden in a derived class, searches for a Claim object that matches the specified claim type and rights in the ClaimSet.

public:
 abstract System::Collections::Generic::IEnumerable<System::IdentityModel::Claims::Claim ^> ^ FindClaims(System::String ^ claimType, System::String ^ right);
public abstract System.Collections.Generic.IEnumerable<System.IdentityModel.Claims.Claim> FindClaims(string claimType, string right);
abstract member FindClaims : string * string -> seq<System.IdentityModel.Claims.Claim>
Public MustOverride Function FindClaims (claimType As String, right As String) As IEnumerable(Of Claim)

Parameters

claimType
String

The uniform resource identifier (URI) of a claim type. Several claim types are available as static properties of the ClaimTypes class.

right
String

The URI of the right associated with the new claim. Several rights are available as static properties of the Rights class.

Returns

A IEnumerable<T> of type Claim that enables you to enumerate the claims that matches the specified criteria.

Examples

// Iterate through claims of type "http://example.org/claims/allowedoperation".
foreach (Claim c in cs.FindClaims("http://example.org/claims/allowedoperation",
 Rights.PossessProperty))
{
For Each c In cs.FindClaims("http://example.org/claims/allowedoperation", Rights.PossessProperty)

Remarks

To determine if this ClaimSet contains the claim without returning the claim, call the ContainsClaim method.

Applies to


Feedback

Was this page helpful?