AsnContentException Constructeurs

Définition

Surcharges

AsnContentException()

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message par défaut.

AsnContentException(String)

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message fourni.

AsnContentException(SerializationInfo, StreamingContext)
Obsolète.

Initialise une nouvelle instance de la classe AsnContentException avec des données sérialisées.

AsnContentException(String, Exception)

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message fourni et l'exception à l'origine de cette exception.

AsnContentException()

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message par défaut.

public:
 AsnContentException();
public AsnContentException ();
Public Sub New ()

S’applique à

AsnContentException(String)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message fourni.

public:
 AsnContentException(System::String ^ message);
public AsnContentException (string? message);
new System.Formats.Asn1.AsnContentException : string -> System.Formats.Asn1.AsnContentException
Public Sub New (message As String)

Paramètres

message
String

Message d'erreur qui explique la raison de l'exception.

S’applique à

AsnContentException(SerializationInfo, StreamingContext)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.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 AsnContentException avec des données sérialisées.

protected:
 AsnContentException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected AsnContentException (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 AsnContentException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Formats.Asn1.AsnContentException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Formats.Asn1.AsnContentException
[<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.Formats.Asn1.AsnContentException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Formats.Asn1.AsnContentException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Paramètres

info
SerializationInfo

Objet qui contient les données sérialisées de l'objet.

context
StreamingContext

Informations contextuelles sur la source ou la destination.

Attributs

S’applique à

AsnContentException(String, Exception)

Source:
AsnContentException.cs
Source:
AsnContentException.cs
Source:
AsnContentException.cs

Initialise une nouvelle instance de la classe AsnContentException en utilisant le message fourni et l'exception à l'origine de cette exception.

public:
 AsnContentException(System::String ^ message, Exception ^ inner);
public AsnContentException (string? message, Exception? inner);
new System.Formats.Asn1.AsnContentException : string * Exception -> System.Formats.Asn1.AsnContentException
Public Sub New (message As String, inner As Exception)

Paramètres

message
String

Message d'erreur qui explique la raison de l'exception.

inner
Exception

Exception ayant provoqué l'exception actuelle.

S’applique à