|
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: DNP3AdaptersAssembly: Dnp3Adapters (in Dnp3Adapters.dll) Version: 2.4.296-beta
Syntax[ConnectionStringParameterAttribute]
[DefaultValueAttribute("Class0,Class1,Class2,Class3=2")]
public string PollingIntervals { get; set; }<ConnectionStringParameterAttribute>
<DefaultValueAttribute("Class0,Class1,Class2,Class3=2")>
Public Property PollingIntervals As String
Get
Set[<ConnectionStringParameterAttribute>]
[<DefaultValueAttribute("Class0,Class1,Class2,Class3=2")>]
member PollingIntervals : string with get, setfunction get_PollingIntervals();
function set_PollingIntervals(value);
View SourceProperty 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