Method | Description | |
---|---|---|
Flush ( ) : void |
Flush does not need to do anything See M:System.IO.Stream.Flush
|
|
HasData ( int count ) : bool |
Whether the WaveStream has non-zero sample data at the current position for the specified count
|
|
Seek ( long offset, SeekOrigin origin ) : long |
An alternative way of repositioning. See M:System.IO.Stream.Seek(System.Int64,System.IO.SeekOrigin)
|
|
SetLength ( long length ) : void |
Sets the length of the WaveStream. Not Supported.
|
|
Skip ( int seconds ) : void |
Moves forward or backwards the specified number of seconds in the stream
|
|
Write ( Array buffer, int offset, int count ) : void |
Writes to the WaveStream. Not Supported.
|
public HasData ( int count ) : bool | ||
count | int | Number of bytes to read |
return | bool |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
return | long |
public Skip ( int seconds ) : void | ||
seconds | int | Number of seconds to move, can be negative |
return | void |
public Write ( Array buffer, int offset, int count ) : void | ||
buffer | Array | |
offset | int | |
count | int | |
return | void |