Пример #1
0
 /// <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>
 /// Checks the query options.
 /// </summary>
 /// <param name="type">The type.</param>
 /// <returns></returns>
 private bool CheckQueryOptions(EQueryType type)
 {
     return(XmlConfigHelper.Check(m_dictionary, m_xpath + m_xpathQueryOptions, (int)type));
 }
Пример #3
0
 /// <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>
 /// Unsets the query options.
 /// </summary>
 /// <param name="type">The type.</param>
 private void UnsetQueryOptions(EQueryType type)
 {
     XmlConfigHelper.Unset(m_dictionary, m_xpath + m_xpathQueryOptions, (int)type);
 }
 /// <summary>
 /// Checks the query options.
 /// </summary>
 /// <param name="mode">The mode.</param>
 /// <returns></returns>
 private bool CheckQueryOptions(ESnoozeMode mode)
 {
     return(XmlConfigHelper.Check(m_dictionary, m_xpath + m_xpathQueryOptions, (int)mode));
 }
 /// <summary>
 /// Unsets the query options.
 /// </summary>
 /// <param name="mode">The mode.</param>
 private void UnsetQueryOptions(ESnoozeMode mode)
 {
     XmlConfigHelper.Unset(m_dictionary, m_xpath + m_xpathQueryOptions, (int)mode);
 }
 /// <summary>
 /// Sets the type of the query.
 /// </summary>
 /// <param name="mode">The mode.</param>
 private void SetQueryType(ESnoozeMode mode)
 {
     XmlConfigHelper.Set(m_dictionary, m_xpath + m_xpathQueryType, (int)mode);
 }
Пример #8
0
 /// <summary>
 /// Sets the specified type.
 /// </summary>
 /// <param name="type">The type.</param>
 private void Set(EQueryType type)
 {
     XmlConfigHelper.Set(m_dictionary, m_xpath + m_xpathQueryType, (int)type);
 }