IPWorks Auth 2020 macOS 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
Int32

The number of properties in the claim.

propertyIndex
Int32

Selects a property. This is valid from 0 to PropertyCount. To inspect a property, first set this property 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 init()
public init(typeName: String, value: String, valueType: String, issuerName: String, originalIssuer: String)

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 macOS Edition - Version 20.0 [Build 8155]