CustomClaimCollection.Item Property (Int32)
Gets or sets the CustomClaim object at the specified index.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public CustomClaim this[
int index
] { get; set; }
public:
property CustomClaim^ default[
int index
] {
CustomClaim^ get(int index);
void set(int index, CustomClaim^ value);
}
member Item :
index:int -> CustomClaim with get, set
Public Property Item (
index As Integer
) As CustomClaim
Parameters
index
Type: System.Int32The zero-based index of the CustomClaim object to set or retrieve.
Property Value
Type: System.Web.Security.SingleSignOn.CustomClaim
The CustomClaim object at the specified index.
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