Compartir a través de


NoMatchingPrincipalException Constructores

Definición

Crea una nueva instancia de la clase NoMatchingPrincipalException.

Sobrecargas

NoMatchingPrincipalException()

Crea una nueva instancia de la clase NoMatchingPrincipalException.

NoMatchingPrincipalException(String)

Crea una nueva instancia de la clase NoMatchingPrincipalException con el mensaje de error especificado.

NoMatchingPrincipalException(SerializationInfo, StreamingContext)
Obsoletos.

Inicializa una nueva instancia de la clase NoMatchingPrincipalException desde las instancias StreamingContext y SerializationInfo.

NoMatchingPrincipalException(String, Exception)

Crea una nueva instancia de la clase NoMatchingPrincipalException con el mensaje de error y la excepción anidada especificados.

NoMatchingPrincipalException()

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

Crea una nueva instancia de la clase NoMatchingPrincipalException.

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

Comentarios

El constructor sin parámetros inicializa una nueva instancia de la NoMatchingPrincipalException clase . La Message propiedad se inicializa en un mensaje proporcionado por el sistema que describe el error. Este mensaje tiene en cuenta la referencia cultural del sistema actual. La propiedad InnerException se inicializa en null.

Se aplica a

NoMatchingPrincipalException(String)

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

Crea una nueva instancia de la clase NoMatchingPrincipalException con el mensaje de error especificado.

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

Parámetros

message
String

Texto del mensaje de error.

Comentarios

La NoMatchingPrincipalException instancia se inicializa con la Message propiedad establecida en el valor de message. Si message es null, la propiedad se inicializa en un mensaje proporcionado por el Message sistema.

Se aplica a

NoMatchingPrincipalException(SerializationInfo, StreamingContext)

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

Precaución

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

Inicializa una nueva instancia de la clase NoMatchingPrincipalException desde las instancias StreamingContext y SerializationInfo.

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

Parámetros

info
SerializationInfo

SerializationInfo que contiene la información necesaria para serializar la nueva excepción NoMatchingPrincipalException.

context
StreamingContext

StreamingContext que contiene el origen de la secuencia serializada asociada a la nueva excepción NoMatchingPrincipalException.

Atributos

Se aplica a

NoMatchingPrincipalException(String, Exception)

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

Crea una nueva instancia de la clase NoMatchingPrincipalException con el mensaje de error y la excepción anidada especificados.

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

Parámetros

message
String

Texto del mensaje.

innerException
Exception

Excepción anidada.

Comentarios

La NoMatchingPrincipalException instancia se inicializa con la Message propiedad establecida en el valor de message y la InnerException propiedad establecida en el valor de innerException. Si message es null, la propiedad se inicializa en un mensaje proporcionado por el Message sistema. InnerException se inicializa en null.

Se aplica a