FederationServerService.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
[WebMethodAttribute]
public void GetClaims(
ClaimType claimType,
out GroupClaimCollection groupClaimCollection,
out CustomClaimCollection customClaimCollection
)
public:
[WebMethodAttribute]
void GetClaims(
ClaimType claimType,
[OutAttribute] GroupClaimCollection^% groupClaimCollection,
[OutAttribute] CustomClaimCollection^% customClaimCollection
)
[<WebMethodAttribute>]
member GetClaims :
claimType:ClaimType *
groupClaimCollection:GroupClaimCollection byref *
customClaimCollection:CustomClaimCollection byref -> unit
<WebMethodAttribute>
Public 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
FederationServerService Class
System.Web.Security.SingleSignOn Namespace
Return to top