PrincipalExistsException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Instantiates a new instance of the PrincipalExistsException class.
Overloads
PrincipalExistsException() |
Instantiates a new instance of the PrincipalExistsException class. |
PrincipalExistsException(String) |
Instantiates a new instance of the PrincipalExistsException class with the specified error message. |
PrincipalExistsException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the PrincipalExistsException class from the specified SerializationInfo and StreamingContext instances. |
PrincipalExistsException(String, Exception) |
Instantiates a new instance of the PrincipalExistsException class with the specified error message and specified nested exception. |
PrincipalExistsException()
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PrincipalExistsException class.
public:
PrincipalExistsException();
public PrincipalExistsException ();
Public Sub New ()
Remarks
The parameterless constructor initializes a new instance of the PrincipalExistsException 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 property is initialized to null
.
Applies to
PrincipalExistsException(String)
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PrincipalExistsException class with the specified error message.
public:
PrincipalExistsException(System::String ^ message);
public PrincipalExistsException (string message);
new System.DirectoryServices.AccountManagement.PrincipalExistsException : string -> System.DirectoryServices.AccountManagement.PrincipalExistsException
Public Sub New (message As String)
Parameters
- message
- String
The text of the error message.
Remarks
The PrincipalExistsException 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
PrincipalExistsException(SerializationInfo, StreamingContext)
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- 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 PrincipalExistsException class from the specified SerializationInfo and StreamingContext instances.
protected:
PrincipalExistsException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PrincipalExistsException (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 PrincipalExistsException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.PrincipalExistsException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalExistsException
[<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.PrincipalExistsException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalExistsException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
A SerializationInfo that contains the information required to serialize the new PrincipalExistsException.
- context
- StreamingContext
A StreamingContext that contains the source of the serialized stream that is associated with the new PrincipalExistsException.
- Attributes
Applies to
PrincipalExistsException(String, Exception)
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PrincipalExistsException class with the specified error message and specified nested exception.
public:
PrincipalExistsException(System::String ^ message, Exception ^ innerException);
public PrincipalExistsException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.PrincipalExistsException : string * Exception -> System.DirectoryServices.AccountManagement.PrincipalExistsException
Public Sub New (message As String, innerException As Exception)
Parameters
- message
- String
The text of the error message.
- innerException
- Exception
A nested exception.
Remarks
The PrincipalExistsException 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
.