Skip to content

Commit 573aeee

Browse files
authored
Fix Intellisense comments (#31)
***NO_CI***
1 parent 3dac2c8 commit 573aeee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

System.Device.UsbStream/UsbStream.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ public extern bool IsConnected
5959
/// <summary>
6060
/// Gets or sets the number of milliseconds before a time-out occurs when a read operation does not finish.
6161
/// </summary>
62+
/// <value>The number of milliseconds before a time-out occurs when a read operation does not finish.</value>
6263
/// <exception cref="IOException">If the USB device is not connected.</exception>
63-
/// <exception cref="ArgumentOutOfRangeException">The read time-out value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
64+
/// <exception cref="ArgumentOutOfRangeException">The <see cref="ReadTimeout"/> value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
6465
public override int ReadTimeout
6566
{
6667
get => _readTimeout;
@@ -76,8 +77,9 @@ public override int ReadTimeout
7677
/// <summary>
7778
/// Gets or sets the number of milliseconds before a time-out occurs when a write operation does not finish.
7879
/// </summary>
80+
/// <value>The number of milliseconds before a time-out occurs. The default is <see cref="Timeout.Infinite"/>.</value>
7981
/// <exception cref="IOException">If the USB device is not connected.</exception>
80-
/// <exception cref="ArgumentOutOfRangeException">The read time-out value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
82+
/// <exception cref="ArgumentOutOfRangeException">The <see cref="WriteTimeout"/> value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
8183
public override int WriteTimeout
8284
{
8385
get => _writeTimeout;

0 commit comments

Comments
 (0)