Gets a value that indicates whether the NetworkStream supports reading.
CanSeekGets a value that indicates whether the stream supports seeking. This property is not currently supported. This property always returns false
.
Indicates whether timeout properties are usable for NetworkStream.
CanWriteGets a value that indicates whether the NetworkStream supports writing.
DataAvailableGets a value that indicates whether data is available on the NetworkStream to be immediately read.
LengthGets the length of the data available on the stream. This property is not currently supported and always throws a NotSupportedException.
PositionGets or sets the current position in the stream. This property is not currently supported and always throws a NotSupportedException.
ReadableGets or sets a value that indicates whether the NetworkStream can be read.
ReadTimeoutGets or sets the amount of time that a read operation blocks waiting for data.
SocketGets the underlying Socket.
WriteableGets a value that indicates whether the NetworkStream is writable.
WriteTimeoutGets or sets the amount of time that a write operation blocks waiting for data.
BeginRead(Byte[], Int32, Int32, AsyncCallback, Object)Begins an asynchronous read from the NetworkStream.
BeginWrite(Byte[], Int32, Int32, AsyncCallback, Object)Begins an asynchronous write to a stream.
Close()Closes the NetworkStream.
Close()Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. Instead of calling this method, ensure that the stream is properly disposed.
(Inherited from Stream) Close(Int32)Closes the NetworkStream after waiting the specified time to allow data to be sent.
Close(TimeSpan)Closes the NetworkStream after waiting the specified amount of time to allow data to be sent.
CopyTo(Stream, Int32)Reads the bytes from the current stream and writes them to another stream, using a specified buffer size. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CopyTo(Stream)Reads the bytes from the current stream and writes them to another stream. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CopyToAsync(Stream, CancellationToken)Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified cancellation token. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CopyToAsync(Stream, Int32, CancellationToken)Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CopyToAsync(Stream, Int32)Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CopyToAsync(Stream)Asynchronously reads the bytes from the current stream and writes them to another stream. Both streams positions are advanced by the number of bytes copied.
(Inherited from Stream) CreateObjRef(Type)Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject) CreateWaitHandle()Obsolete.
Obsolete.
Obsolete.
Allocates a WaitHandle object.
(Inherited from Stream) Dispose()Releases all resources used by the Stream.
(Inherited from Stream) Dispose(Boolean)Releases the unmanaged resources used by the NetworkStream and optionally releases the managed resources.
DisposeAsync()Asynchronously releases the unmanaged resources used by the Stream.
(Inherited from Stream) EndRead(IAsyncResult)Handles the end of an asynchronous read.
EndWrite(IAsyncResult)Handles the end of an asynchronous write.
Equals(Object)Determines whether the specified object is equal to the current object.
(Inherited from Object) Finalize()Releases all resources used by the NetworkStream.
Flush()Flushes data from the stream. This method is reserved for future use.
FlushAsync()Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device.
(Inherited from Stream) FlushAsync(CancellationToken)Flushes data from the stream as an asynchronous operation.
GetHashCode()Serves as the default hash function.
(Inherited from Object) GetLifetimeService()Obsolete.
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject) GetType()Gets the Type of the current instance.
(Inherited from Object) InitializeLifetimeService()Obsolete.
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject) MemberwiseClone()Creates a shallow copy of the current Object.
(Inherited from Object) MemberwiseClone(Boolean)Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject) ObjectInvariant()Obsolete.
Provides support for a Contract.
(Inherited from Stream) Read(Byte[], Int32, Int32)Reads data from the NetworkStream and stores it to a byte array.
Read(Span<Byte>)Reads data from the NetworkStream and stores it to a span of bytes in memory.
Read(Span<Byte>)When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
(Inherited from Stream) ReadAsync(Byte[], Int32, Int32, CancellationToken)Reads data from the NetworkStream and stores it to a specified range of a byte array as an asynchronous operation.
ReadAsync(Byte[], Int32, Int32, CancellationToken)Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.
(Inherited from Stream) ReadAsync(Byte[], Int32, Int32)Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
(Inherited from Stream) ReadAsync(Memory<Byte>, CancellationToken)Reads data from the NetworkStream and stores it in a byte memory range as an asynchronous operation.
ReadAsync(Memory<Byte>, CancellationToken)Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.
(Inherited from Stream) ReadAtLeast(Span<Byte>, Int32, Boolean)Reads at least a minimum number of bytes from the current stream and advances the position within the stream by the number of bytes read.
(Inherited from Stream) ReadAtLeastAsync(Memory<Byte>, Int32, Boolean, CancellationToken)Asynchronously reads at least a minimum number of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests.
(Inherited from Stream) ReadByte()Reads a byte from the NetworkStream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
ReadByte()Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream.
(Inherited from Stream) ReadExactly(Byte[], Int32, Int32)Reads count
number of bytes from the current stream and advances the position within the stream.
Reads bytes from the current stream and advances the position within the stream until the buffer
is filled.
Asynchronously reads count
number of bytes from the current stream, advances the position within the stream, and monitors cancellation requests.
Asynchronously reads bytes from the current stream, advances the position within the stream until the buffer
is filled, and monitors cancellation requests.
Sets the current position of the stream to the given value. This method is not currently supported and always throws a NotSupportedException.
SetLength(Int64)Sets the length of the stream. This method always throws a NotSupportedException.
ToString()Returns a string that represents the current object.
(Inherited from Object) Write(Byte[], Int32, Int32)Writes data to the NetworkStream from a specified range of a byte array.
Write(ReadOnlySpan<Byte>)Writes data to the NetworkStream from a read-only byte span.
Write(ReadOnlySpan<Byte>)When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
(Inherited from Stream) WriteAsync(Byte[], Int32, Int32, CancellationToken)Writes data to the NetworkStream from the specified range of a byte array as an asynchronous operation.
WriteAsync(Byte[], Int32, Int32, CancellationToken)Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.
(Inherited from Stream) WriteAsync(Byte[], Int32, Int32)Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
(Inherited from Stream) WriteAsync(ReadOnlyMemory<Byte>, CancellationToken)Writes data to the NetworkStream from a read-only memory byte memory range as an asynchronous operation.
WriteAsync(ReadOnlyMemory<Byte>, CancellationToken)Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests.
(Inherited from Stream) WriteByte(Byte)Writes a byte to the current position in the NetworkStream and advances the position within the stream by one byte.
WriteByte(Byte)Writes a byte to the current position in the stream and advances the position within the stream by one byte.
(Inherited from Stream)RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4