Class Track
A Matroska track element.
Inherited Members
Namespace: FM.LiveSwitch.Matroska
Assembly: FM.LiveSwitch.dll
Syntax
public class Track : Element
Constructors
Track()
Initializes a new instance of the Track class.
Declaration
public Track()
Track(Byte[])
Initializes a new instance of the Track class.
Declaration
public Track(byte[] bytes)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | bytes | The bytes. |
Properties
EbmlId
Gets the EBML ID.
Declaration
public static byte[] EbmlId { get; }
Property Value
| Type | Description |
|---|---|
| System.Byte[] |
Id
Gets the EBML ID.
Declaration
public override byte[] Id { get; }
Property Value
| Type | Description |
|---|---|
| System.Byte[] |
Overrides
TrackEntries
Gets or sets the track entry elements.
Declaration
public TrackEntry[] TrackEntries { get; set; }
Property Value
| Type | Description |
|---|---|
| TrackEntry[] |
Methods
GetInnerBytes()
Gets the inner bytes.
Declaration
protected override byte[] GetInnerBytes()
Returns
| Type | Description |
|---|---|
| System.Byte[] |
Overrides
Merge(Track)
Merges another Track into this one.
Declaration
public void Merge(Track track)
Parameters
| Type | Name | Description |
|---|---|---|
| Track | track | The Track. |