TypeConverter.ConvertFromInvariantString 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.
Convertit la valeur en valeur du type de ce convertisseur, à l'aide de la culture dite indifférente.
Surcharges
ConvertFromInvariantString(String) |
Convertit la chaîne donnée en représentation sous forme de chaîne du type de ce convertisseur, à l'aide de la culture dite indifférente. |
ConvertFromInvariantString(ITypeDescriptorContext, String) |
Convertit la chaîne donnée au type de ce convertisseur, à l'aide des informations de culture indifférente et du contexte spécifiés. |
ConvertFromInvariantString(String)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Convertit la chaîne donnée en représentation sous forme de chaîne du type de ce convertisseur, à l'aide de la culture dite indifférente.
public:
System::Object ^ ConvertFromInvariantString(System::String ^ text);
public object ConvertFromInvariantString (string text);
public object? ConvertFromInvariantString (string text);
member this.ConvertFromInvariantString : string -> obj
Public Function ConvertFromInvariantString (text As String) As Object
Paramètres
Retours
Object représentant le texte converti.
Exceptions
La conversion ne peut pas être effectuée.
Remarques
L'implémentation par défaut retourne toujours null
.
Voir aussi
S’applique à
ConvertFromInvariantString(ITypeDescriptorContext, String)
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
- Source:
- TypeConverter.cs
Convertit la chaîne donnée au type de ce convertisseur, à l'aide des informations de culture indifférente et du contexte spécifiés.
public:
System::Object ^ ConvertFromInvariantString(System::ComponentModel::ITypeDescriptorContext ^ context, System::String ^ text);
public object ConvertFromInvariantString (System.ComponentModel.ITypeDescriptorContext context, string text);
public object? ConvertFromInvariantString (System.ComponentModel.ITypeDescriptorContext? context, string text);
member this.ConvertFromInvariantString : System.ComponentModel.ITypeDescriptorContext * string -> obj
Public Function ConvertFromInvariantString (context As ITypeDescriptorContext, text As String) As Object
Paramètres
- context
- ITypeDescriptorContext
ITypeDescriptorContext qui fournit un contexte de format.
Retours
Object représentant le texte converti.
Exceptions
La conversion ne peut pas être effectuée.
Remarques
Une exception est levée si la chaîne ne peut pas être convertie en l’objet approprié. L'implémentation par défaut retourne toujours null
.
Utilisez le paramètre context
pour extraire des informations supplémentaires sur l'environnement à partir duquel ce convertisseur est appelé. Ce paramètre peut être null
, donc toujours case activée-le. En outre, les propriétés de l'objet de contexte peuvent retourner null
.