Exemplo n.º 1
0
 /// <summary>
 /// The extension method checks if the subkeys are to be added too or not for first level.
 /// </summary>
 /// <param name="enumProc">The main object.</param>
 /// <returns>Returns true if the enum object contains the flag <see cref="ADD_ALL_SUBKEYS"/> or <see cref="ADD_ALL_SUBKEYS_RECURSIVE"/></returns>
 public static bool DoAddAllSubKeys(this EnumRegistryQueryProcess enumProc)
 {
     return((enumProc & EnumRegistryQueryProcess.ADD_ALL_SUBKEYS) == EnumRegistryQueryProcess.ADD_ALL_SUBKEYS);
 }
Exemplo n.º 2
0
 /// <summary>
 /// The extension method checks if the flag <see cref="ADD_ALL_VALUES"/> is present or not.
 /// </summary>
 /// <param name="enumProc">The main object.</param>
 /// <returns>Returns true if the enum object contains the flag <see cref="ADD_ALL_VALUES"/>.</returns>
 public static bool DoAddAllValues(this EnumRegistryQueryProcess enumProc)
 {
     return((enumProc & EnumRegistryQueryProcess.ADD_ALL_VALUES) == EnumRegistryQueryProcess.ADD_ALL_VALUES);
 }
 /// <summary>
 /// Constructor to initialize the query configurator using enumerator
 /// </summary>
 /// <param name="eprocQuery">The enumerator of registry query process</param>
 public ConfiguratorRegistryQuery(EnumRegistryQueryProcess eprocQuery)
 {
     this.ProcQueryEnum    = eprocQuery;
     this.LevelSubkeyQuery = -1;
 }