Newtonsoft.Json.Converters.DataTableConverter.CanConvert C# (CSharp) Méthode

CanConvert() public méthode

Determines whether this instance can convert the specified value type.
public CanConvert ( Type valueType ) : bool
valueType System.Type Type of the value.
Résultat bool
    public override bool CanConvert(Type valueType)
    {
      return (valueType == typeof(DataTable));
    }
  }