PasswordException 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 PasswordException class.
Overloads
PasswordException() |
Instantiates a new instance of the PasswordException class. |
PasswordException(String) |
Instantiates a new instance of the PasswordException class with the specified error message. |
PasswordException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the PasswordException class from the specified SerializationInfo and StreamingContext instances. |
PasswordException(String, Exception) |
Instantiates a new instance of the PasswordException class with the specified error message and specified nested exception. |
PasswordException()
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PasswordException class.
public:
PasswordException();
public PasswordException ();
Public Sub New ()
Remarks
The parameterless constructor initializes a new instance of the PasswordException 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
PasswordException(String)
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PasswordException class with the specified error message.
public:
PasswordException(System::String ^ message);
public PasswordException (string message);
new System.DirectoryServices.AccountManagement.PasswordException : string -> System.DirectoryServices.AccountManagement.PasswordException
Public Sub New (message As String)
Parameters
- message
- String
The text of the error message.
Remarks
The PasswordException 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
PasswordException(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 PasswordException class from the specified SerializationInfo and StreamingContext instances.
protected:
PasswordException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PasswordException (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 PasswordException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.PasswordException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PasswordException
[<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.PasswordException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PasswordException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
A SerializationInfo that contains the information required to serialize the new PasswordException.
- context
- StreamingContext
A StreamingContext that contains the source of the serialized stream that is associated with the new PasswordException.
- Attributes
Applies to
PasswordException(String, Exception)
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
- Source:
- exceptions.cs
Instantiates a new instance of the PasswordException class with the specified error message and specified nested exception.
public:
PasswordException(System::String ^ message, Exception ^ innerException);
public PasswordException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.PasswordException : string * Exception -> System.DirectoryServices.AccountManagement.PasswordException
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 PasswordException 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
.