IPWorks Auth 2020 Kotlin Edition

Questions / Feedback?

Claim Type

The claim.

Remarks

This type describes the claim.

Fields

IssuerName
String?

The name of the issuer. This may be a URL like "http://adfs.contoso.com/adfs/services/trust".

OriginalIssuer
String?

The name of the original issuer. This may be a URL like "http://adfs.contoso.com/adfs/services/trust".

PropertyCount
Int

The number of properties in the claim.

PropertyIndex
Int

Selects a property. This is valid from 0 to PropertyCount. To inspect a property, first set this field and then inspect PropertyName and PropertyValue. For instance:

for(int i=0;i<component.Claims[0].PropertyCount;i++)
{
    component.Claims[0].PropertyIndex = i;
    Console.WriteLine(component.Claims[0].PropertyName + ": " + component.Claims[0].PropertyValue);
}

PropertyName
String?

The name of the property.

PropertyValue
String?

The value of the property.

TypeName
String?

The type name of the claim. This may be a value like "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier".

Value
String?

The value of the claim.

ValueType
String?

The type of value. This may be a value like "http://www.w3.org/2001/XMLSchema#string".

Constructors

public constructor()



public constructor(typeName: String?, value: String?, valueType: String?, issuerName: String?, originalIssuer: String?)



Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks Auth 2020 Kotlin Edition - Version 20.0 [Build 7941]