 | AutoResetStream.BaseStream Property |
The decorated
Stream instance which will be extended.
Namespace:
BionicCode.Utilities.Net.Standard.IO
Assembly:
BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.4
Syntaxpublic Stream BaseStream { get; set; }
Public Property BaseStream As Stream
Get
Set
Dim instance As AutoResetStream
Dim value As Stream
value = instance.BaseStream
instance.BaseStream = value
member BaseStream : Stream with get, set
/** @property */
public Stream get_BaseStream()
/** @property */
public void set_BaseStream(Stream value)
function get BaseStream () : Stream
function set BaseStream (value : Stream)
function get_BaseStream();
function set_BaseStream(value);
PROPERTY BaseStream AS Stream GET SET
Property Value
Type:
StreamAn instance of type
Stream. This instance will be decorated to extend the default
Stream features and behaviors.
See Also