Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Win32LobAppRegistryRule File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* Win32LobAppRegistryRule class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class Win32LobAppRegistryRule extends Win32LobAppRule
{
/**
* Set the @odata.type since this type is immediately descended from an abstract
* type that is referenced as the type in an entity.
* @param array $propDict The property dictionary
*/
public function __construct($propDict = array())
{
parent::__construct($propDict);
$this->setODataType("#microsoft.graph.win32LobAppRegistryRule");
}
/**
* Gets the check32BitOn64System
* A value indicating whether to search the 32-bit registry on 64-bit systems.
*
* @return bool|null The check32BitOn64System
*/
public function getCheck32BitOn64System()
{
if (array_key_exists("check32BitOn64System", $this->_propDict)) {
return $this->_propDict["check32BitOn64System"];
} else {
return null;
}
}
/**
* Sets the check32BitOn64System
* A value indicating whether to search the 32-bit registry on 64-bit systems.
*
* @param bool $val The value of the check32BitOn64System
*
* @return Win32LobAppRegistryRule
*/
public function setCheck32BitOn64System($val)
{
$this->_propDict["check32BitOn64System"] = $val;
return $this;
}
/**
* Gets the comparisonValue
* The registry comparison value.
*
* @return string|null The comparisonValue
*/
public function getComparisonValue()
{
if (array_key_exists("comparisonValue", $this->_propDict)) {
return $this->_propDict["comparisonValue"];
} else {
return null;
}
}
/**
* Sets the comparisonValue
* The registry comparison value.
*
* @param string $val The value of the comparisonValue
*
* @return Win32LobAppRegistryRule
*/
public function setComparisonValue($val)
{
$this->_propDict["comparisonValue"] = $val;
return $this;
}
/**
* Gets the keyPath
* The full path of the registry entry containing the value to detect.
*
* @return string|null The keyPath
*/
public function getKeyPath()
{
if (array_key_exists("keyPath", $this->_propDict)) {
return $this->_propDict["keyPath"];
} else {
return null;
}
}
/**
* Sets the keyPath
* The full path of the registry entry containing the value to detect.
*
* @param string $val The value of the keyPath
*
* @return Win32LobAppRegistryRule
*/
public function setKeyPath($val)
{
$this->_propDict["keyPath"] = $val;
return $this;
}
/**
* Gets the operationType
* The registry operation type. Possible values are: notConfigured, exists, doesNotExist, string, integer, version.
*
* @return Win32LobAppRegistryRuleOperationType|null The operationType
*/
public function getOperationType()
{
if (array_key_exists("operationType", $this->_propDict)) {
if (is_a($this->_propDict["operationType"], "\Microsoft\Graph\Model\Win32LobAppRegistryRuleOperationType") || is_null($this->_propDict["operationType"])) {
return $this->_propDict["operationType"];
} else {
$this->_propDict["operationType"] = new Win32LobAppRegistryRuleOperationType($this->_propDict["operationType"]);
return $this->_propDict["operationType"];
}
}
return null;
}
/**
* Sets the operationType
* The registry operation type. Possible values are: notConfigured, exists, doesNotExist, string, integer, version.
*
* @param Win32LobAppRegistryRuleOperationType $val The value to assign to the operationType
*
* @return Win32LobAppRegistryRule The Win32LobAppRegistryRule
*/
public function setOperationType($val)
{
$this->_propDict["operationType"] = $val;
return $this;
}
/**
* Gets the operator
* The operator for registry detection. Possible values are: notConfigured, equal, notEqual, greaterThan, greaterThanOrEqual, lessThan, lessThanOrEqual.
*
* @return Win32LobAppRuleOperator|null The operator
*/
public function getOperator()
{
if (array_key_exists("operator", $this->_propDict)) {
if (is_a($this->_propDict["operator"], "\Microsoft\Graph\Model\Win32LobAppRuleOperator") || is_null($this->_propDict["operator"])) {
return $this->_propDict["operator"];
} else {
$this->_propDict["operator"] = new Win32LobAppRuleOperator($this->_propDict["operator"]);
return $this->_propDict["operator"];
}
}
return null;
}
/**
* Sets the operator
* The operator for registry detection. Possible values are: notConfigured, equal, notEqual, greaterThan, greaterThanOrEqual, lessThan, lessThanOrEqual.
*
* @param Win32LobAppRuleOperator $val The value to assign to the operator
*
* @return Win32LobAppRegistryRule The Win32LobAppRegistryRule
*/
public function setOperator($val)
{
$this->_propDict["operator"] = $val;
return $this;
}
/**
* Gets the valueName
* The name of the registry value to detect.
*
* @return string|null The valueName
*/
public function getValueName()
{
if (array_key_exists("valueName", $this->_propDict)) {
return $this->_propDict["valueName"];
} else {
return null;
}
}
/**
* Sets the valueName
* The name of the registry value to detect.
*
* @param string $val The value of the valueName
*
* @return Win32LobAppRegistryRule
*/
public function setValueName($val)
{
$this->_propDict["valueName"] = $val;
return $this;
}
}