SerialPort.ReceivedBytesThreshold Property

Definition

Gets or sets the number of bytes in the internal input buffer before a DataReceived event occurs.

public:
 property int ReceivedBytesThreshold { int get(); void set(int value); };
public int ReceivedBytesThreshold { get; set; }
[System.ComponentModel.Browsable(true)]
public int ReceivedBytesThreshold { get; set; }
member this.ReceivedBytesThreshold : int with get, set
[<System.ComponentModel.Browsable(true)>]
member this.ReceivedBytesThreshold : int with get, set
Public Property ReceivedBytesThreshold As Integer

Property Value

The number of bytes in the internal input buffer before a DataReceived event is fired. The default is 1.

Attributes

Exceptions

The ReceivedBytesThreshold value is less than or equal to zero.

Remarks

The DataReceived event is also raised if an Eof character is received, regardless of the number of bytes in the internal input buffer and the value of the ReceivedBytesThreshold property.

Applies to