Table of Contents

Class RiffChunk

Namespace
NAudio.Wave
Assembly
NAudio.Core.dll

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

identifier int
length int
streamPosition long

Properties

Identifier

The chunk identifier

public int Identifier { get; }

Property Value

int

IdentifierAsString

The chunk identifier converted to a string

public string IdentifierAsString { get; }

Property Value

string

Length

The chunk length

public int Length { get; }

Property Value

int

StreamPosition

The stream position this chunk is located at

public long StreamPosition { get; }

Property Value

long