Click or drag to resize
Grid Solutions Framework

DNP3InputAdapterPollingIntervals Property

Gets or sets the string representation of the list of intervals, in seconds, at which the adapter will poll each class of data from the DNP3 device.

Namespace: DNP3Adapters
Assembly: Dnp3Adapters (in Dnp3Adapters.dll) Version: 2.4.296-beta
Syntax
[ConnectionStringParameterAttribute]
[DefaultValueAttribute("Class0,Class1,Class2,Class3=2")]
public string PollingIntervals { get; set; }
View Source

Property Value

String
Remarks
The string format for the polling intervals is a semicolon-separated list of intervals where each interval is a comma separated list of class names followed by an equals sign and the interval in seconds. For example: Class0,Class1=2; Class2=10; Class3=30 would configure the adapter to poll Class 0 and Class 1 every 2 seconds, Class 2 every 10 seconds, and Class 3 every 30 seconds. The class names should be one of 'Class0', 'Class1', 'Class2', or 'Class3'.
See Also