Click or drag to resize
RawReadWriter Class
Reads/writes an audio data from/to the headerless stream. Slinear, Gsm, A-law, mu-law etc.
Inheritance Hierarchy

Namespace: Alvas.Audio
Assembly: Alvas.Audio (in Alvas.Audio.dll) Version: 2016.0.6173.41573
Syntax
public class RawReadWriter : RawReader, 
	IAudioReadWriter, IAudioReader, IAudioWriter

The RawReadWriter type exposes the following members.

Constructors
  NameDescription
Public methodRawReadWriter
Initializes a new instance of the RawReadWriter class based on the supplied stream and a specific audio format.
Top
Methods
  NameDescription
Public methodClose
Closes the current reader and writer and the underlying stream.
(Overrides BinaryReaderClose.)
Public methodDispose
Releases all resources used by the current instance of the BinaryReader class.
(Inherited from BinaryReader.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetDurationInMS
Gets audio stream duration in milliseconds.
(Inherited from RawReader.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLengthInBytes
Gets audio stream length in bytes.
(Inherited from RawReader.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodMilliseconds2Bytes
Converts from milliseconds to bytes for current stream.
(Inherited from AudioReader.)
Public methodPeekChar
Returns the next available character and does not advance the byte or character position.
(Inherited from BinaryReader.)
Public methodRead
Reads characters from the underlying stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader.)
Public methodRead(Char, Int32, Int32)
Reads the specified number of characters from the stream, starting from a specified point in the character array.
(Inherited from BinaryReader.)
Public methodRead(Byte, Int32, Int32)
Reads the specified number of bytes from the stream, starting from a specified point in the byte array.
(Inherited from BinaryReader.)
Public methodReadBoolean
Reads a Boolean value from the current stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader.)
Public methodReadByte
Reads the next byte from the current stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader.)
Public methodReadBytes
Reads the specified number of bytes from the current stream into a byte array and advances the current position by that number of bytes.
(Inherited from BinaryReader.)
Public methodReadChar
Reads the next character from the current stream and advances the current position of the stream in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader.)
Public methodReadChars
Reads the specified number of characters from the current stream, returns the data in a character array, and advances the current position in accordance with the Encoding used and the specific character being read from the stream.
(Inherited from BinaryReader.)
Public methodReadData
Reads all audio data from the stream.
(Inherited from RawReader.)
Public methodReadData(Int32)
Reads audio data from the stream.
(Inherited from RawReader.)
Public methodReadData(Int32, Int32)
Reads audio data from the stream.
(Inherited from RawReader.)
Public methodReadDataInBytes(Int32)
Reads audio data from the stream.
(Inherited from RawReader.)
Public methodReadDataInBytes(Int32, Int32)
Reads audio data from the stream.
(Inherited from RawReader.)
Public methodReadDecimal
Reads a decimal value from the current stream and advances the current position of the stream by sixteen bytes.
(Inherited from BinaryReader.)
Public methodReadDouble
Reads an 8-byte floating point value from the current stream and advances the current position of the stream by eight bytes.
(Inherited from BinaryReader.)
Public methodReadFormat
Reads an audio format.
(Inherited from RawReader.)
Public methodReadInt16
Reads a 2-byte signed integer from the current stream and advances the current position of the stream by two bytes.
(Inherited from BinaryReader.)
Public methodReadInt32
Reads a 4-byte signed integer from the current stream and advances the current position of the stream by four bytes.
(Inherited from BinaryReader.)
Public methodReadInt64
Reads an 8-byte signed integer from the current stream and advances the current position of the stream by eight bytes.
(Inherited from BinaryReader.)
Public methodReadSByte
Reads a signed byte from this stream and advances the current position of the stream by one byte.
(Inherited from BinaryReader.)
Public methodReadSingle
Reads a 4-byte floating point value from the current stream and advances the current position of the stream by four bytes.
(Inherited from BinaryReader.)
Public methodReadString
Reads a string from the current stream. The string is prefixed with the length, encoded as an integer seven bits at a time.
(Inherited from BinaryReader.)
Public methodReadUInt16
Reads a 2-byte unsigned integer from the current stream using little-endian encoding and advances the position of the stream by two bytes.
(Inherited from BinaryReader.)
Public methodReadUInt32
Reads a 4-byte unsigned integer from the current stream and advances the position of the stream by four bytes.
(Inherited from BinaryReader.)
Public methodReadUInt64
Reads an 8-byte unsigned integer from the current stream and advances the position of the stream by eight bytes.
(Inherited from BinaryReader.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWriteData(Byte)
Writes an audio byte array to the underlying stream.
Public methodWriteData(Byte, Int64)
Writes an audio byte array to the underlying stream from specified position.
Public methodWriteData(Byte, Int64, WriteMode)
Writes an audio byte array to the underlying stream from specified position in specified mode.
Top
Properties
  NameDescription
Public propertyBaseStream
Exposes access to the underlying stream of the BinaryReader.
(Inherited from BinaryReader.)
Top
See Also