public static short GetInt16([NotNull] this Directory directory, int tagType)
        {
            if (directory.TryGetInt16(tagType, out short value))
            {
                return(value);
            }

            return(ThrowValueNotPossible <short>(directory, tagType));
        }