/// <summary> /// Reads the tags stored at the end 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 begin. This also /// marks the seek position at which the media ends. /// </returns> public long ReadEnd(ReadStyle style) { return(EndTag.Read(style)); }
/// <summary> /// Reads the tags stored at the end 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 begin. This also /// marks the seek position at which the media ends. /// </returns> public long ReadEnd() { return(end_tag.Read()); }
/// <summary> /// Reads the tags stored at the end 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 begin. This also /// marks the seek position at which the media ends. /// </returns> public long ReadEnd(ReadStyle style) { return(end_tag.Read(style)); }