ReadBoolean() public abstract method

Reads the a boolean as a single bit from the stream.
public abstract ReadBoolean ( ) : bool
return bool
 /// <summary>
 ///     Reads a Boolean value from the current stream and advances the current position of the stream by one bit.
 /// </summary>
 /// <returns>
 ///     true if the bit is nonzero; otherwise, false.
 /// </returns>
 public override bool ReadBoolean()
 {
     return(_reader.ReadBoolean());
 }