You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the number of milliseconds before a time-out occurs when a read operation does not finish.
42
+
/// </summary>
43
+
/// <exception cref="IOException">If the USB device is not connected.</exception>
44
+
/// <exception cref="ArgumentOutOfRangeException">The read time-out value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
45
+
publicoverrideintReadTimeout
46
+
{
47
+
get=>_readTimeout;
48
+
49
+
set
50
+
{
51
+
CheckValidTimeout(value);
52
+
53
+
_readTimeout=value;
54
+
}
55
+
}
56
+
57
+
/// <summary>
58
+
/// Gets or sets the number of milliseconds before a time-out occurs when a write operation does not finish.
59
+
/// </summary>
60
+
/// <exception cref="IOException">If the USB device is not connected.</exception>
61
+
/// <exception cref="ArgumentOutOfRangeException">The read time-out value is less than zero and not equal to <see cref="Timeout.Infinite"/>.</exception>
0 commit comments