Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 717 Bytes

NT_SET_PARAMETER_WITH_HISTORY.md

File metadata and controls

38 lines (25 loc) · 717 Bytes
uid
NT_SET_PARAMETER_WITH_HISTORY

NT_SET_PARAMETER_WITH_HISTORY (256)

Sets a parameter with the provided timestamp.

uint dmaID = 346;
uint elementID = 806;
uint parameterID = 10;

uint[] ids = new uint[] { dmaID, elementID, parameterID };

int value = 10;
DateTime time = DateTime.Now - TimeSpan.FromDays(1);

object[] valueDetails = new object[] { value, time };

protocol.NotifyDataMiner(256/*NT_SET_PARAMETER_WITH_HISTORY*/ , ids, valueDetails);

Parameters

  • ids (uint[]):
    • ids[0]: DataMiner Agent ID.
    • ids[1]: Element ID.
    • ids[2]: Parameter ID.
  • value (object): Value to set.

Return Value

  • Does not return an object.

See also

  • SLProtocol.SetParameter method