Sdílet prostřednictvím


MultipleMatchesException Konstruktory

Definice

Vytvoří instanci nové instance MultipleMatchesException třídy.

Přetížení

MultipleMatchesException()

Vytvoří instanci nové instance MultipleMatchesException třídy.

MultipleMatchesException(String)

Vytvoří instanci nové instance MultipleMatchesException třídy se zadanou chybovou zprávou.

MultipleMatchesException(SerializationInfo, StreamingContext)
Zastaralé.

Inicializuje novou instanci MultipleMatchesException třídy ze zadaných SerializationInfo a StreamingContext instancí.

MultipleMatchesException(String, Exception)

Vytvoří instanci nové instance MultipleMatchesException třídy se zadanou chybovou zprávou a zadanou vnořenou výjimkou.

MultipleMatchesException()

Zdroj:
exceptions.cs
Zdroj:
exceptions.cs
Zdroj:
exceptions.cs

Vytvoří instanci nové instance MultipleMatchesException třídy.

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

Poznámky

Konstruktor bez parametrů inicializuje novou instanci MultipleMatchesException třídy. Vlastnost Message je inicializována na systémovou zprávu, která popisuje chybu. Tato zpráva bere v potaz aktuální systémovou kulturu. Inicializuje InnerException se na null.

Platí pro

MultipleMatchesException(String)

Zdroj:
exceptions.cs
Zdroj:
exceptions.cs
Zdroj:
exceptions.cs

Vytvoří instanci nové instance MultipleMatchesException třídy se zadanou chybovou zprávou.

public:
 MultipleMatchesException(System::String ^ message);
public MultipleMatchesException (string message);
new System.DirectoryServices.AccountManagement.MultipleMatchesException : string -> System.DirectoryServices.AccountManagement.MultipleMatchesException
Public Sub New (message As String)

Parametry

message
String

Text chybové zprávy.

Poznámky

Instance MultipleMatchesException se inicializuje s Message vlastností nastavenou na hodnotu message. Pokud message je null, Message vlastnost se inicializuje na zprávu dodanou systémem.

Platí pro

MultipleMatchesException(SerializationInfo, StreamingContext)

Zdroj:
exceptions.cs
Zdroj:
exceptions.cs
Zdroj:
exceptions.cs

Upozornění

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

Inicializuje novou instanci MultipleMatchesException třídy ze zadaných SerializationInfo a StreamingContext instancí.

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

Parametry

info
SerializationInfo

A SerializationInfo , který obsahuje informace potřebné k serializaci nové MultipleMatchesException.

context
StreamingContext

A StreamingContext , který obsahuje zdroj serializovaného datového proudu, který je přidružen k novému MultipleMatchesException.

Atributy

Platí pro

MultipleMatchesException(String, Exception)

Zdroj:
exceptions.cs
Zdroj:
exceptions.cs
Zdroj:
exceptions.cs

Vytvoří instanci nové instance MultipleMatchesException třídy se zadanou chybovou zprávou a zadanou vnořenou výjimkou.

public:
 MultipleMatchesException(System::String ^ message, Exception ^ innerException);
public MultipleMatchesException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.MultipleMatchesException : string * Exception -> System.DirectoryServices.AccountManagement.MultipleMatchesException
Public Sub New (message As String, innerException As Exception)

Parametry

message
String

Text chybové zprávy.

innerException
Exception

Vnořená výjimka.

Poznámky

Instance MultipleMatchesException se inicializuje s Message vlastností nastavenou na hodnotu message a InnerException vlastnost nastavenou na hodnotu innerException. Pokud message je null, Message vlastnost se inicializuje na zprávu dodanou systémem. Inicializuje InnerException se na null.

Platí pro