Compartilhar via


CustomClaimLdapAttributeCollection.Item Property (Int32)

 

Gets or sets the CustomClaimLdapAttribute object at the specified index in this collection.

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

Syntax

public CustomClaimLdapAttribute this[
    int index
] { get; set; }
public:
property CustomClaimLdapAttribute^ default[
    int index
] {
    CustomClaimLdapAttribute^ get(int index);
    void set(int index, CustomClaimLdapAttribute^ value);
}
member Item : 
        index:int -> CustomClaimLdapAttribute with get, set
Public Property Item (
    index As Integer
) As CustomClaimLdapAttribute

Parameters

Property Value

Type: System.Web.Security.SingleSignOn.CustomClaimLdapAttribute

The CustomClaimLdapAttribute object at the specified index in this collection.

Remarks

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

See Also

CustomClaimLdapAttributeCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top