CustomClaimTransformCollection.Item Property (Int32)
Gets or sets the CustomClaimTransform 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 CustomClaimTransform this[
int index
] { get; set; }
public:
property CustomClaimTransform^ default[
int index
] {
CustomClaimTransform^ get(int index);
void set(int index, CustomClaimTransform^ value);
}
member Item :
index:int -> CustomClaimTransform with get, set
Public Property Item (
index As Integer
) As CustomClaimTransform
Parameters
index
Type: System.Int32The zero-based index of the CustomClaimTransform object to set or retrieve in this collection.
Property Value
Type: System.Web.Security.SingleSignOn.CustomClaimTransform
The CustomClaimTransform object at the specified index in this collection.
Remarks
In C#, this property is the indexer for the class.
See Also
CustomClaimTransformCollection Class
System.Web.Security.SingleSignOn Namespace
Return to top