Provides schema information for tag resolution.
public interface IYamlSchema
kind:method, kind:property, kind:ctor. Press Esc to clear.ExpandTag(String)Expands the tag. Example, transforms a short tag '!!str' to its long version 'tag:yaml.org,2002:str'GetDefaultTag(NodeEvent)Gets the default tag for the specified NodeEvent. The default tag can be different from a actual tag of this NodeEvent.GetDefaultTag(Type)Gets the default tag for the specified Type. This is only valid for scalar, return null if no default tag found.GetTypeForDefaultTag(String?)Gets the type for a default tag.IsTagImplicit(String?)Determines whether the short tag implicit (e.g. !!int).RegisterTag(String, String)Registers a long/short tag association.ShortenTag(String)Shortens the tag. Example, transforms a long tag 'tag:yaml.org,2002:str' to its short version '!!str'TryParse(Scalar, Boolean, out String?, out Object?)Gets the default tag and value for the specified Scalar. The default tag can be different from a actual tag of this NodeEvent.TryParse(Scalar, Type, out Object?)Gets the default tag and value for the specified Scalar. The default tag can be different from a actual tag of this NodeEvent.