JsonConverter<T>.CanConvert(Type) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si le type spécifié peut être converti.
public:
override bool CanConvert(Type ^ typeToConvert);
public override bool CanConvert (Type typeToConvert);
override this.CanConvert : Type -> bool
Public Overrides Function CanConvert (typeToConvert As Type) As Boolean
Paramètres
- typeToConvert
- Type
Type avec lequel effectuer la comparaison.
Retours
true
si le type peut être converti ; sinon, false
.
Remarques
L’implémentation par défaut consiste à retourner true
quand typeToConvert
est typeof(T)
égal à .
Pour plus d’informations, consultez Comment écrire des convertisseurs personnalisés pour la sérialisation JSON.