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