NT_SET_ITEM_DATA (89)
Sets the values stored for the specified parameters in the ElementData.xml file.
Parameters
Setting a single value:
string paramName = "ExampleParameter";
string paramValue = "Data";
protocol.NotifyProtocol(89, paramName, paramValue);
- paramName (string): The name of the parameter.
- paramValue (string): The value to set.
Setting multiple values:
string[] paramNames = new string[] { "ExampleParameter" };
string[] paramValues = new string[] { "Data" };
object result = protocol.NotifyProtocol(89, paramNames, paramValues);
if (result != null)
{
////...
}
else
{
////...
}
- paramNames (string[]): The names of the parameters.
- paramValues (string[]): The values to set.
Return Value
- (object): An array of unsigned integers (the same length as the number of parameters that have been set), with the result for each set.
Remarks
- The SLProtocol interface defines two wrapper methods for this call: SetParameterItemData and SetParametersItemData.
- This Notify type is deprecated since DataMiner 10.3.4.