Class File
A Matroska file.
Inheritance
System.Object
    File
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.ToString()
    
  Namespace: FM.LiveSwitch.Matroska
Assembly: FM.LiveSwitch.dll
Syntax
public class File
  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.  |