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

ReadFooter() public method

public ReadFooter ( Stream stream ) : bool
stream Stream
return bool
			public bool ReadFooter(Stream stream)
			{
				bool eos;
				this.Footer = owner.ReadBytes(stream, 4, out eos);
				return !eos;
			}