You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
305 B
C#

using System;
namespace Prime31
{
// Token: 0x0200001B RID: 27
public interface IJsonSerializerStrategy
{
// Token: 0x060000A8 RID: 168
bool serializeNonPrimitiveObject(object input, out object output);
// Token: 0x060000A9 RID: 169
object deserializeObject(object value, Type type);
}
}