CustomClaimCollection.Item Property (String)

 

Gets the CustomClaim object whose CustomClaimName property is equal to the specified name.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public CustomClaim this[
    string customClaimName
] { get; }
public:
property CustomClaim^ default[
    String^ customClaimName
] {
    CustomClaim^ get(String^ customClaimName);
}
member Item : 
        customClaimName:string -> CustomClaim with get
Public ReadOnly Property Item (
    customClaimName As String
) As CustomClaim

Parameters

Property Value

Type: System.Web.Security.SingleSignOn.CustomClaim

The CustomClaim object whose CustomClaimName property is equal to the specified name.

Remarks

In C#, this property is the indexer for the class.

See Also

Item Overload
CustomClaimCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top