ReadUntilFirstNullByte(MemoryStream)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found.
|
ReadUntilFirstNullByte(MemoryStream, Int64)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found.
|
ReadUntilFirstNullByte(MemoryStream, Encoding)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found;
and then converts the bytes read to a string representation using the specified text encoding.
|
ReadUntilFirstNullByte(MemoryStream, Int64, Int64)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found.
|
ReadUntilFirstNullByte(MemoryStream, Int64, Encoding)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found;
and then converts the bytes read to a string representation using the specified text encoding.
|
ReadUntilFirstNullByte(MemoryStream, Int64, Int64, Encoding)
|
Reads the bytes of the specified MemoryStream until the first null (zero) byte is found,
or until the end, in case of a null byte is not found;
and then converts the bytes read to a string representation using the specified text encoding.
|