System.Security.Util.StringExpressionSet.StringSubsetStringExpression C# (CSharp) Method

StringSubsetStringExpression() protected method

protected StringSubsetStringExpression ( String left, StringExpressionSet right, bool ignoreCase ) : bool
left String
right StringExpressionSet
ignoreCase bool
return bool
        protected bool StringSubsetStringExpression( String left, StringExpressionSet right, bool ignoreCase )
        {
            for (int index = 0; index < right.m_list.Count; ++index)
            {
                if (StringSubsetString( left, (String)right.m_list[index], ignoreCase ))
                {
                    return true;
                }
            }
            return false;
        }