Method SetPropertyValue
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
SetPropertyValue(string, string)
Sets the value of the specified service property.
public virtual void SetPropertyValue(string propertyName, string propertyValue)
Parameters
Examples
var myService = engine.FindService(179, 15629);
if(myService.HasProperty("myProperty"))
{
myService.SetPropertyValue("myProperty", "myPropertyValue");
}