You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static List<ConfigTypeConverter> ListeTypeConverter { get; set; } = new List<ConfigTypeConverter>();
public static void AddYamlTypeConverter(IYamlTypeConverter typeConverter, Action<IRegistrationLocationSelectionSyntax<IYamlTypeConverter>>? where = null)
{
ListeTypeConverter.Add(new ConfigTypeConverter() { TypeConverter = typeConverter, Where = where });
}
}
public class ConfigTypeConverter
{
public IYamlTypeConverter? TypeConverter { get; set; }
public Action<IRegistrationLocationSelectionSyntax<IYamlTypeConverter>>? Where { get; set; }