Class File
A Matroska file.
Inheritance
System.Object
File
Namespace: FM.LiveSwitch.Matroska
Assembly: FM.LiveSwitch.dll
Syntax
public class File : object
Constructors
File()
Initializes a new instance of the File class.
Declaration
public File()
File(Byte[])
Initializes a new instance of the File class.
Declaration
public File(byte[] bytes)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Byte[] | bytes | The bytes. |
Properties
Ebml
Gets or sets the EBML element.
Declaration
public Ebml Ebml { get; set; }
Property Value
| Type | Description |
|---|---|
| Ebml |
Segment
Gets or sets the segment element.
Declaration
public Segment Segment { get; set; }
Property Value
| Type | Description |
|---|---|
| Segment |
Methods
GetBytes()
Serializes to a byte array.
Declaration
public byte[] GetBytes()
Returns
| Type | Description |
|---|---|
| System.Byte[] |
Merge(File)
Merges another File into this one.
Declaration
public void Merge(File file)
Parameters
| Type | Name | Description |
|---|---|---|
| File | file | The File. |