SerialPortChannel.Timeout Property
Namespace: Rebex.TerminalEmulation
Assembly: Rebex.Terminal.SerialPort.dll (version 7.0.9083)
Timeout
Gets or sets the length of time in milliseconds before the operation times out (specify -1 or 0 to indicate that the request does not time out).
Declaration
public int Timeout { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The length of time, in milliseconds, until the operation times out, or the value -1 or 0 to indicate that the request does not time out. Default is -1 (Infinity). |
Remarks
The internal timeout counter is reset every time data is sent or received from to server. This also means that data transfers only time out after x milliseconds of inactivity, not after x milliseconds from the start of the transfer.
Minimal value is 1000. Setting this to a value lower than 1000 will set it to 1000.