PeerCastStation.FLV.FLVFileParser.FLVTag.ReadBody C# (CSharp) Метод

ReadBody() публичный Метод

public ReadBody ( Stream stream ) : bool
stream Stream
Результат bool
			public bool ReadBody(Stream stream)
			{
				bool eos;
				this.Body = owner.ReadBytes(stream, this.DataSize, out eos);
				return !eos;
			}