 | AutoResetStream.ReadTimeout Property |
Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out.
Namespace:
BionicCode.Utilities.Net.Standard.IO
Assembly:
BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.4
Syntaxpublic override int ReadTimeout { get; set; }
Public Overrides Property ReadTimeout As Integer
Get
Set
Dim instance As AutoResetStream
Dim value As Integer
value = instance.ReadTimeout
instance.ReadTimeout = value
public:
virtual property int ReadTimeout {
int get () override;
void set (int value) override;
}
abstract ReadTimeout : int with get, set
override ReadTimeout : int with get, set
/** @property */
public int get_ReadTimeout()
/** @property */
public void set_ReadTimeout(int value)
override function get ReadTimeout () : int
override function set ReadTimeout (value : int)
function get_ReadTimeout();
function set_ReadTimeout(value);
VIRTUAL PROPERTY ReadTimeout AS LONG GET SET
Return Value
Type:
Int32A value, in miliseconds, that determines how long the stream will attempt to read before timing out.
Exceptions
See Also