UtilJsonApiSerializer.Serialization.JsonApiFormatter.CanReadType C# (CSharp) Method

CanReadType() public method

public CanReadType ( Type type ) : bool
type System.Type
return bool
        public override bool CanReadType(Type type)
        {
            return type.IsGenericType && type.GetGenericTypeDefinition() == typeof (Delta<>);
        }