BufferedReadStream.EnsureBuffered Method

Definition

Overloads

EnsureBuffered()

Ensures that the buffer is not empty.

EnsureBuffered(Int32)

Ensures that a minimum amount of buffered data is available.

EnsureBuffered()

Source:
BufferedReadStream.cs
Source:
BufferedReadStream.cs
Source:
BufferedReadStream.cs

Ensures that the buffer is not empty.

public:
 bool EnsureBuffered();
public bool EnsureBuffered ();
member this.EnsureBuffered : unit -> bool
Public Function EnsureBuffered () As Boolean

Returns

Returns true if the buffer is not empty; false otherwise.

Applies to

EnsureBuffered(Int32)

Source:
BufferedReadStream.cs
Source:
BufferedReadStream.cs
Source:
BufferedReadStream.cs

Ensures that a minimum amount of buffered data is available.

public:
 bool EnsureBuffered(int minCount);
public bool EnsureBuffered (int minCount);
member this.EnsureBuffered : int -> bool
Public Function EnsureBuffered (minCount As Integer) As Boolean

Parameters

minCount
Int32

Minimum amount of buffered data.

Returns

Returns true if the minimum amount of buffered data is available; false otherwise.

Applies to