PeerCastStation.FLV.FLVFileParser.FLVTag.ReadBody C# (CSharp) Method

ReadBody() public method

public ReadBody ( Stream stream ) : bool
stream Stream
return bool
			public bool ReadBody(Stream stream)
			{
				bool eos;
				this.Body = owner.ReadBytes(stream, this.DataSize, out eos);
				return !eos;
			}