Inheritance: IContentReader
 public void ReadFooter(Stream stream)
 {
     this.Footer = FLVContentReader.ReadBytes(stream, 4);
 }
 public void ReadBody(Stream stream)
 {
     this.Body = FLVContentReader.ReadBytes(stream, this.DataSize);
 }