IFederationServer.GetClaims Method (ClaimType, GroupClaimCollection, CustomClaimCollection)
Gets a collection of either GroupClaim objects, CustomClaim objects or both.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
void GetClaims(
ClaimType claimType,
out GroupClaimCollection groupClaimCollection,
out CustomClaimCollection customClaimCollection
)
void GetClaims(
ClaimType claimType,
[OutAttribute] GroupClaimCollection^% groupClaimCollection,
[OutAttribute] CustomClaimCollection^% customClaimCollection
)
abstract GetClaims :
claimType:ClaimType *
groupClaimCollection:GroupClaimCollection byref *
customClaimCollection:CustomClaimCollection byref -> unit
Sub GetClaims (
claimType As ClaimType,
<OutAttribute> ByRef groupClaimCollection As GroupClaimCollection,
<OutAttribute> ByRef customClaimCollection As CustomClaimCollection
)
Parameters
claimType
Type: System.Web.Security.SingleSignOn.ClaimTypeThe ClaimType to get.
groupClaimCollection
Type: System.Web.Security.SingleSignOn.GroupClaimCollectionA collection of GroupClaim objects.
customClaimCollection
Type: System.Web.Security.SingleSignOn.CustomClaimCollectionA collection of CustomClaim objects.
See Also
IFederationServer Interface
System.Web.Security.SingleSignOn Namespace
Return to top