public WriteObjectDelegate GetWriteFn(Type type)
 {
     return(JsonWriter.GetWriteFn(type));
 }
 public TypeInfo GetTypeInfo(Type type)
 {
     return(JsonWriter.GetTypeInfo(type));
 }
 public WriteObjectDelegate GetWriteFn <T>()
 {
     return(JsonWriter <T> .WriteFn());
 }