CheckTrue() public static method

public static CheckTrue ( string value ) : bool
value string
return bool
コード例 #1
0
        internal bool IsValidateCertificateName()
        {
            var prop = GetProperty(ValidateCertificateName);

            return(AbstractXmlConfigHelper.CheckTrue(prop));
        }
コード例 #2
0
        internal bool IsCheckCertificateRevocation()
        {
            var prop = GetProperty(CheckCertificateRevocation);

            return(AbstractXmlConfigHelper.CheckTrue(prop));
        }