'Declaration
<UnitAttribute("ms")> <ValueRangeAttribute(1, 2147483647)> Public Property KeepAliveInterval As Integer
'Usage
Dim instance As UAClientSessionParameters Dim value As Integer instance.KeepAliveInterval = value value = instance.KeepAliveInterval
[Unit("ms")] [ValueRange(1, 2147483647)] public int KeepAliveInterval {get; set;}
Property Value
Frequency in milliseconds, or System.Threading.Timeout.Infinite to disable the keep alive monitoring.Valid values of this property are in the range from 1
to 2147483647 (Int32.MaxValue)
.
Unit of measurement is ms
.
The default value of this property is 5000
.