PeerCastStation.FLV.FLVFileParser.FLVTag.ReadBody C# (CSharp) Méthode

ReadBody() public méthode

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