public void set_setting(string componentUid, string settingUid, object value)
        {
            if (componentUid == null)
            {
                throw new ArgumentNullException(nameof(componentUid));
            }
            if (settingUid == null)
            {
                throw new ArgumentNullException(nameof(settingUid));
            }

            _componentRegistryService.SetComponentSetting(componentUid, settingUid, PythonConvert.FromPython(value));
        }
예제 #2
0
 public void set_configuration(string configuration_uid, object value)
 {
     _componentRegistryService.SetComponentConfigurationValue(_componentUid, configuration_uid, PythonConvert.FromPython(value));
 }
예제 #3
0
 public void register_setting(string setting_uid, object value)
 {
     _componentRegistryService.RegisterComponentSetting(_componentUid, setting_uid, PythonConvert.FromPython(value));
 }
예제 #4
0
 public void set_status(string status_uid, object value)
 {
     _componentRegistryService.SetComponentStatusValue(_componentUid, status_uid, PythonConvert.FromPython(value));
 }
예제 #5
0
 public void set_setting(string component_uid, string setting_uid, object value)
 {
     _componentRegistryService.SetComponentSetting(component_uid, setting_uid, PythonConvert.FromPython(value));
 }
 public void set_setting(string settingUid, object value)
 {
     _automationRegistryService.SetAutomationSetting(_automationUid, settingUid, PythonConvert.FromPython(value));
 }