PasswordException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
PasswordException クラスの新しいインスタンスを生成します。
オーバーロード
PasswordException() |
PasswordException クラスの新しいインスタンスを生成します。 |
PasswordException(String) |
指定されたエラー メッセージで PasswordException クラスの新しいインスタンスをインスタンス化します。 |
PasswordException(SerializationInfo, StreamingContext) |
古い.
指定した PasswordException インスタンスと SerializationInfo インスタンスから、StreamingContext クラスの新しいインスタンスを初期化します。 |
PasswordException(String, Exception) |
指定したエラー メッセージおよび指定した入れ子になった例外を使用して、PasswordException クラスの新しいインスタンスをインスタンス化します。 |
PasswordException()
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
PasswordException クラスの新しいインスタンスを生成します。
public:
PasswordException();
public PasswordException ();
Public Sub New ()
注釈
パラメーターなしのコンストラクターは、 クラスの新しいインスタンスを PasswordException 初期化します。 プロパティは Message 、エラーを説明するシステム指定のメッセージに初期化されます。 このメッセージには、システムの現在のカルチャが考慮されます。 InnerException プロパティは null
に初期化されます。
適用対象
PasswordException(String)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定されたエラー メッセージで PasswordException クラスの新しいインスタンスをインスタンス化します。
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)
パラメーター
- message
- String
エラー メッセージのテキスト。
注釈
インスタンスはPasswordException、 プロパティを のMessagemessage
値に設定して初期化されます。 が のnull
場合message
、Messageプロパティはシステム指定のメッセージに初期化されます。
適用対象
PasswordException(SerializationInfo, StreamingContext)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
注意事項
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
指定した PasswordException インスタンスと SerializationInfo インスタンスから、StreamingContext クラスの新しいインスタンスを初期化します。
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)
パラメーター
- info
- SerializationInfo
新しい PasswordException をシリアル化するために必要な情報を格納している SerializationInfo。
- context
- StreamingContext
新しい PasswordException に関連付けられるシリアル化ストリームの転送元を格納する StreamingContext。
- 属性
適用対象
PasswordException(String, Exception)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定したエラー メッセージおよび指定した入れ子になった例外を使用して、PasswordException クラスの新しいインスタンスをインスタンス化します。
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)
パラメーター
- message
- String
エラー メッセージのテキスト。
- innerException
- Exception
入れ子になった例外。
注釈
インスタンスは PasswordException 、 プロパティが の Message 値 message
に設定され、 プロパティが InnerException の innerException
値に設定されて初期化されます。 が のnull
場合message
、Messageプロパティはシステム指定のメッセージに初期化されます。 は InnerException に null
初期化されます。
適用対象
.NET