MultipleMatchesException Constructors

Definition

Instantiates a new instance of the MultipleMatchesException class.

Overloads

MultipleMatchesException()

Instantiates a new instance of the MultipleMatchesException class.

MultipleMatchesException(String)

Instantiates a new instance of the MultipleMatchesException class with the specified error message.

MultipleMatchesException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the MultipleMatchesException class from the specified SerializationInfo and StreamingContext instances.

MultipleMatchesException(String, Exception)

Instantiates a new instance of the MultipleMatchesException class with the specified error message and specified nested exception.

MultipleMatchesException()

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instantiates a new instance of the MultipleMatchesException class.

public MultipleMatchesException ();

Remarks

The parameterless constructor initializes a new instance of the MultipleMatchesException class. The Message property is initialized to a system-supplied message that describes the error. This message takes into account the current system culture. The InnerException is initialized to null.

Applies to

.NET 9 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

MultipleMatchesException(String)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instantiates a new instance of the MultipleMatchesException class with the specified error message.

public MultipleMatchesException (string message);

Parameters

message
String

The text of the error message.

Remarks

The MultipleMatchesException instance is initialized with the Message property set to the value of message. If message is null, the Message property is initialized to a system-supplied message.

Applies to

.NET 9 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

MultipleMatchesException(SerializationInfo, StreamingContext)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.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 MultipleMatchesException class from the specified SerializationInfo and StreamingContext instances.

[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 MultipleMatchesException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
protected MultipleMatchesException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);

Parameters

info
SerializationInfo

A SerializationInfo that contains the information required to serialize the new MultipleMatchesException.

context
StreamingContext

A StreamingContext that contains the source of the serialized stream that is associated with the new MultipleMatchesException.

Attributes

Applies to

.NET 9 (package-provided) e outras versões
Produto Versões (Obsoleto)
.NET (8 (package-provided), 9 (package-provided))
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

MultipleMatchesException(String, Exception)

Source:
exceptions.cs
Source:
exceptions.cs
Source:
exceptions.cs

Instantiates a new instance of the MultipleMatchesException class with the specified error message and specified nested exception.

public MultipleMatchesException (string message, Exception innerException);

Parameters

message
String

The text of the error message.

innerException
Exception

A nested exception.

Remarks

The MultipleMatchesException instance is initialized with the Message property set to the value of message and the InnerException property set to the value of innerException. If message is null, the Message property is initialized to a system-supplied message. The InnerException is initialized to null.

Applies to

.NET 9 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)