Class RiffChunk
Holds information about a RIFF file chunk
public class RiffChunk
- Inheritance
-
RiffChunk
- Inherited Members
Constructors
RiffChunk(int, int, long)
Creates a RiffChunk object
public RiffChunk(int identifier, int length, long streamPosition)
Parameters
Properties
Identifier
The chunk identifier
public int Identifier { get; }
Property Value
IdentifierAsString
The chunk identifier converted to a string
public string IdentifierAsString { get; }
Property Value
Length
The chunk length
public int Length { get; }
Property Value
StreamPosition
The stream position this chunk is located at
public long StreamPosition { get; }