isSAML() public méthode

public isSAML ( ) : bool
Résultat bool
Exemple #1
0
    /**
     * Constructor that provides compatibility with old trustType and followRefs interface
     */
    public ResolverFlags(TrustType trustType, bool followRefs)
    {
    	this();
		setHttps(trustType.isHTTPS());
		setSaml(trustType.isSAML());
		setRefs(followRefs);
    }