Hi everyone, I hope you're all doing well.
While reviewing the documentation, I came across the FindServiceTemplates method. However, it doesn't appear as a valid method in Visual Studio.
Is there an additional DLL or package required besides DataMiner.Automation?
Documentation link: Method FindServiceTemplates | DataMiner Docs
So far, I’ve tried adding the following NuGet packages:


Hi,
It seems that the IEngine interface does not contain the FindServiceTemplates method.
What could be done is to try to cast it to the Engine class, which inherits from the IEngine interface and does implement that method.
Could you give it a try with:
if(engine is Engine concreteEngine)
{
Service[] services = concreteEngine.FindServiceTemplates(filter);
}
Regards,