NoNullAllowedException 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 NoNullAllowedException.
Surcharges
NoNullAllowedException() |
Initialise une nouvelle instance de la classe NoNullAllowedException. |
NoNullAllowedException(String) |
Initialise une nouvelle instance de la classe NoNullAllowedException avec la chaîne spécifiée. |
NoNullAllowedException(SerializationInfo, StreamingContext) |
Obsolète.
Initialise une nouvelle instance de la classe NoNullAllowedException avec les informations de sérialisation. |
NoNullAllowedException(String, Exception) |
Initialise une nouvelle instance de la classe NoNullAllowedException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception. |
NoNullAllowedException()
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
Initialise une nouvelle instance de la classe NoNullAllowedException.
public:
NoNullAllowedException();
public NoNullAllowedException ();
Public Sub New ()
S’applique à
NoNullAllowedException(String)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
Initialise une nouvelle instance de la classe NoNullAllowedException avec la chaîne spécifiée.
public:
NoNullAllowedException(System::String ^ s);
public NoNullAllowedException (string? s);
public NoNullAllowedException (string s);
new System.Data.NoNullAllowedException : string -> System.Data.NoNullAllowedException
Public Sub New (s As String)
Paramètres
- s
- String
Chaîne à afficher lorsque l'exception est levée.
S’applique à
NoNullAllowedException(SerializationInfo, StreamingContext)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.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 NoNullAllowedException avec les informations de sérialisation.
protected:
NoNullAllowedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NoNullAllowedException (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 NoNullAllowedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.NoNullAllowedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.NoNullAllowedException
[<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.Data.NoNullAllowedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.NoNullAllowedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Paramètres
- info
- SerializationInfo
Données requises pour sérialiser ou désérialiser un objet.
- context
- StreamingContext
Description de la source et de la destination du flux sérialisé spécifié.
- Attributs
Voir aussi
S’applique à
NoNullAllowedException(String, Exception)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
Initialise une nouvelle instance de la classe NoNullAllowedException avec un message d'erreur spécifié et une référence à l'exception interne ayant provoqué cette exception.
public:
NoNullAllowedException(System::String ^ message, Exception ^ innerException);
public NoNullAllowedException (string? message, Exception? innerException);
public NoNullAllowedException (string message, Exception innerException);
new System.Data.NoNullAllowedException : string * Exception -> System.Data.NoNullAllowedException
Public Sub New (message As String, innerException As Exception)
Paramètres
- message
- String
Message d'erreur qui explique la raison de l'exception.
- innerException
- Exception
Exception à l'origine de l'exception actuelle, ou une référence null (Nothing
en Visual Basic) si aucune exception interne n'est spécifiée.