Edit

Share via


CryptoSignedXmlRecursionException Constructors

Definition

Overloads

CryptoSignedXmlRecursionException()

Initializes a new instance of the CryptoSignedXmlRecursionException class.

CryptoSignedXmlRecursionException(String)

Initializes a new instance of the CryptoSignedXmlRecursionException class with a specified error message.

CryptoSignedXmlRecursionException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the CryptoSignedXmlRecursionException class with serialized data.

CryptoSignedXmlRecursionException(String, Exception)

Initializes a new instance of the CryptoSignedXmlRecursionException class with a specified error message and a reference to the inner exception that is the cause of this exception.

CryptoSignedXmlRecursionException()

Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs

Initializes a new instance of the CryptoSignedXmlRecursionException class.

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

Applies to

CryptoSignedXmlRecursionException(String)

Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs

Initializes a new instance of the CryptoSignedXmlRecursionException class with a specified error message.

public:
 CryptoSignedXmlRecursionException(System::String ^ message);
public CryptoSignedXmlRecursionException (string message);
new System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException : string -> System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

CryptoSignedXmlRecursionException(SerializationInfo, StreamingContext)

Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs

Caution

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Initializes a new instance of the CryptoSignedXmlRecursionException class with serialized data.

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

Parameters

info
SerializationInfo

The object that holds the serialized object data.

context
StreamingContext

The contextual information about the source or destination.

Attributes

Remarks

This constructor is called during deserialization to reconstitute the exception object transmitted over a stream.

Applies to

CryptoSignedXmlRecursionException(String, Exception)

Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs
Source:
CryptoSignedXmlRecursionException.cs

Initializes a new instance of the CryptoSignedXmlRecursionException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public:
 CryptoSignedXmlRecursionException(System::String ^ message, Exception ^ inner);
public CryptoSignedXmlRecursionException (string message, Exception inner);
new System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException : string * Exception -> System.Security.Cryptography.Xml.CryptoSignedXmlRecursionException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

inner
Exception

The exception that is the cause of the current exception.

Applies to