NVorbis.VorbisReader.FindNextStream C# (CSharp) Method

FindNextStream() public method

Searches for the next stream in a concatenated file
public FindNextStream ( ) : bool
return bool
        public bool FindNextStream()
        {
            if (_containerReader == null) return false;
            return _containerReader.FindNextStream();
        }