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

setParameterPair() public méthode

public setParameterPair ( bool isHttps, bool isSaml ) : void
isHttps bool
isSaml bool
Résultat void
        public void setParameterPair(bool isHttps, bool isSaml)
        {
            if (isHttps) {
                if (isSaml)
                    type = TRUST_SAML_HTTPS;
                else
                    type = TRUST_HTTPS;
            } else {
                if (isSaml)
                    type = TRUST_SAML;
                else
                    type = TRUST_NONE;
            }
        }