CustomClaimCollection.Item Property (Guid)
Gets the CustomClaim object with the specified GUID.
Namespace: System.Web.Security.SingleSignOn
Assembly: System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)
Syntax
public CustomClaim this[
Guid uuid
] { get; }
public:
property CustomClaim^ default[
Guid uuid
] {
CustomClaim^ get(Guid uuid);
}
member Item :
uuid:Guid -> CustomClaim with get
Public ReadOnly Property Item (
uuid As Guid
) As CustomClaim
Parameters
uuid
Type: System.GuidThe GUID of the CustomClaim object to retrieve.
Property Value
Type: System.Web.Security.SingleSignOn.CustomClaim
The CustomClaim object with the specified GUID.
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