PathTooLongException Constructeurs
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.
Initialise une nouvelle instance de la classe PathTooLongException.
Surcharges
PathTooLongException() |
Initialise une nouvelle instance de la classe PathTooLongException dont le HRESULT est égal à COR_E_PATHTOOLONG. |
PathTooLongException(String) |
Initialise une nouvelle instance de la classe PathTooLongException dont la chaîne de message correspond à |
PathTooLongException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe PathTooLongException avec les informations de contexte et de sérialisation spécifiées. |
PathTooLongException(String, Exception) |
Initialise une nouvelle instance de la classe PathTooLongException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
PathTooLongException()
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
Initialise une nouvelle instance de la classe PathTooLongException dont le HRESULT est égal à COR_E_PATHTOOLONG.
public:
PathTooLongException();
public PathTooLongException ();
Public Sub New ()
Remarques
Ce constructeur initialise la Message propriété du nouveau instance dans un message fourni par le système qui décrit l’erreur, par exemple « Le chemin fourni est trop long ». Ce message prend en compte la culture système actuelle.
Voir aussi
- Fichier et flux de données E/S
- Procédure : lire le texte d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
PathTooLongException(String)
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
Initialise une nouvelle instance de la classe PathTooLongException dont la chaîne de message correspond à message
et HRESULT équivaut à COR_E_PATHTOOLONG.
public:
PathTooLongException(System::String ^ message);
public PathTooLongException (string message);
public PathTooLongException (string? message);
new System.IO.PathTooLongException : string -> System.IO.PathTooLongException
Public Sub New (message As String)
Paramètres
- message
- String
String qui décrit l'erreur. Le contenu de message
doit être compréhensible par les utilisateurs. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.
Remarques
Ce constructeur initialise la Message propriété du nouveau instance à l’aide message
de .
Voir aussi
- Fichier et flux de données E/S
- Procédure : lire le texte d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
PathTooLongException(SerializationInfo, StreamingContext)
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
Attention
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialise une nouvelle instance de la classe PathTooLongException avec les informations de contexte et de sérialisation spécifiées.
protected:
PathTooLongException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PathTooLongException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected PathTooLongException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IO.PathTooLongException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.PathTooLongException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new System.IO.PathTooLongException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IO.PathTooLongException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
SerializationInfo qui contient les données d'objet sérialisées concernant l'exception levée.
- context
- StreamingContext
StreamingContext qui contient des informations contextuelles relatives à la source ou à la destination.
- Attributs
Voir aussi
- Fichier et flux de données E/S
- Procédure : lire le texte d’un fichier
- Procédure : écrire du texte dans un fichier
S’applique à
PathTooLongException(String, Exception)
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
- Source:
- PathTooLongException.cs
Initialise une nouvelle instance de la classe PathTooLongException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
PathTooLongException(System::String ^ message, Exception ^ innerException);
public PathTooLongException (string message, Exception innerException);
public PathTooLongException (string? message, Exception? innerException);
new System.IO.PathTooLongException : string * Exception -> System.IO.PathTooLongException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
String qui décrit l'erreur. Le contenu de message
doit être compréhensible par les utilisateurs. L'appelant de ce constructeur est requis pour vérifier que cette chaîne a été localisée pour la culture système actuelle.
- innerException
- Exception
Exception ayant provoqué l'exception actuelle. Si le paramètre innerException
n'est pas null
, l'exception actuelle est levée dans un bloc catch
qui gère l'exception interne.
Remarques
Une exception levée en conséquence directe d'une exception précédente doit contenir une référence à celle-ci dans la propriété InnerException. La propriété InnerException
retourne la valeur passée au constructeur ou la valeur null
si la propriété InnerException
ne fournit pas la valeur d'exception interne au constructeur.
Le tableau suivant affiche les valeurs de propriété initiales pour une instance de PathTooLongException.
Propriété | Value |
---|---|
InnerException | La référence à l'exception interne. |
Message | Chaîne du message d'erreur. |
Pour plus d’informations sur les exceptions internes, consultez InnerException.
Voir aussi
- Exception
- Gestion et levée d’exceptions dans .NET
- Fichier et flux de données E/S
- Procédure : lire le texte d’un fichier
- Procédure : écrire du texte dans un fichier