/// <summary> /// Checks the specified option. /// </summary> /// <param name="option">The option.</param> /// <returns></returns> /// <remarks>Documented by Dev03, 2007-08-02</remarks> private bool Check(EQueryOption option) { return(XmlConfigHelper.Check(m_dictionary, m_basePath + m_xpathQueryOptions, (int)option)); }
/// <summary> /// Unsets the specified option. /// </summary> /// <param name="option">The option.</param> /// <remarks>Documented by Dev03, 2007-08-02</remarks> private void Unset(EQueryOption option) { XmlConfigHelper.Unset(m_dictionary, m_basePath + m_xpathQueryOptions, (int)option); }
/// <summary> /// Checks the specified option. /// </summary> /// <param name="option">The option.</param> /// <returns></returns> /// <remarks>Documented by Dev03, 2007-08-02</remarks> private bool Check(EQueryOption option) { return XmlConfigHelper.Check(m_dictionary, m_basePath + m_xpathQueryOptions, (int)option); }