public IJsonFormatter GetFormatter(Type type)
 {
     return((IJsonFormatter)BuiltinResolverGetFormatterHelper.GetFormatter(type));
 }
Exemple #2
0
 static FormatterCache()
 {
     // Reduce IL2CPP code generate size(don't write long code in <T>)
     Formatter = (IMessagePackFormatter <T>)BuiltinResolverGetFormatterHelper.GetFormatter(typeof(T));
 }
 public static bool HasFormatter(Type type)
 {
     return(BuiltinResolverGetFormatterHelper.GetFormatter(type) != null);
 }