Retrieves an ICollection<Claim>
containing all the elements that match the conditions defined by
the specified predicate.
Namespace: Microsoft.IdentityModel.Claims
Assembly: Microsoft.IdentityModel (in
microsoft.identitymodel.dll)
Usage
Visual Basic |
Dim instance As ClaimCollection
Dim match As Predicate(Of Claim)
Dim returnValue As ICollection(Of Claim)
returnValue = instance.FindAll(match)
|
Syntax
Visual Basic |
Public Function FindAll ( _
match As Predicate(Of Claim) _
) As ICollection(Of Claim)
|
C# |
public ICollection<Claim> FindAll (
Predicate<Claim> match
)
|
C++ |
public:
ICollection<Claim^>^ FindAll (
Predicate<Claim^>^ match
)
|
J# |
public ICollection<Claim> FindAll (
Predicate<Claim> match
)
|
JScript |
public function FindAll (
match : Predicate<Claim>
) : ICollection<Claim>
|
Parameters
- match
-
The predicate delegate that defines the conditions of the
elements to search for.
Return Value
Returns
ICollection. This is the collection of matched
claims.
Thread Safety
Any public static (Shared in Visual
Basic) members of this type are thread safe. Any instance members
are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2008, Windows Vista, Not tested on Windows XP
See Also