// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.Fonts.Tables { /// /// Represents an unrecognized or unsupported font table. /// Used as a placeholder when the table loader encounters a tag it has no registered parser for. /// internal sealed class UnknownTable : Table { /// /// Initializes a new instance of the class. /// /// The four-byte table tag. internal UnknownTable(string name) => this.Name = name; /// /// Gets the four-byte table tag that was not recognized. /// public string Name { get; } } }