Hi,
I am currently working on code to add profile parameter to profile definition from automation script.
At this point, I have a method that takes profile parameter ID as one of args and works with it.
Is it possible to just pass profile parameter name and filter on it to get profile parameter object instead?
Current code looks like this:
Thanks in advance!
You can use the ParameterExposers (part of Skyline.DataMiner.Net.Profiles namespace) like so: ProfileHelper.ProfileParameters.Read(ParameterExposers.Name.Equal("YourNameHere"));

works! thank you very much