CustomClaimCollection.Item Property (CustomClaim)

 

Gets the CustomClaim object from this collection that is equal to the specified CustomClaim object.

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

Syntax

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

Parameters

Property Value

Type: System.Web.Security.SingleSignOn.CustomClaim

The CustomClaim object from this collection that is equal to the specified CustomClaim object.

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