DotNetXri.Client.Resolve.TrustType.isHTTPS C# (CSharp) Méthode

isHTTPS() public méthode

public isHTTPS ( ) : bool
Résultat bool
        public bool isHTTPS()
        {
            return (type.Equals(TRUST_HTTPS) || type.Equals(TRUST_SAML_HTTPS));
        }

Usage Example

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);
    }