/// <summary> /// Reads the tags stored at the start of the file into the /// current instance. /// </summary> /// <returns> /// A <see cref="long" /> value indicating the seek position /// in the file at which the read tags end. This also /// marks the seek position at which the media begins. /// </returns> public long ReadStart() { return(start_tag.Read()); }
/// <summary> /// Reads the tags stored at the start of the file into the /// current instance. /// </summary> /// <returns> /// A <see cref="long" /> value indicating the seek position /// in the file at which the read tags end. This also /// marks the seek position at which the media begins. /// </returns> public long ReadStart(ReadStyle style) { return(StartTag.Read(style)); }