PrincipalOperationException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
PrincipalOperationException クラスの新しいインスタンスを生成します。
オーバーロード
PrincipalOperationException() |
PrincipalOperationException クラスの新しいインスタンスを生成します。 |
PrincipalOperationException(String) |
指定されたエラー メッセージで PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。 |
PrincipalOperationException(SerializationInfo, StreamingContext) |
古い.
指定した PrincipalOperationException インスタンスと SerializationInfo インスタンスから、StreamingContext クラスの新しいインスタンスを初期化します。 |
PrincipalOperationException(String, Exception) |
指定したエラー メッセージおよび指定した入れ子になった例外を使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。 |
PrincipalOperationException(String, Int32) |
指定したエラー メッセージおよび指定したエラー コードを使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。 |
PrincipalOperationException(String, Exception, Int32) |
指定したエラー メッセージ、指定した入れ子になった例外、および指定したエラー コードを使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。 |
PrincipalOperationException()
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
PrincipalOperationException クラスの新しいインスタンスを生成します。
public:
PrincipalOperationException();
public PrincipalOperationException ();
Public Sub New ()
注釈
パラメーターなしのコンストラクターは、 クラスの新しいインスタンスを PrincipalOperationException 初期化します。 プロパティは Message 、エラーを説明するシステム提供のメッセージに初期化されます。 このメッセージには、システムの現在のカルチャが考慮されます。 InnerException プロパティは null
に初期化されます。
適用対象
PrincipalOperationException(String)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定されたエラー メッセージで PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。
public:
PrincipalOperationException(System::String ^ message);
public PrincipalOperationException (string message);
new System.DirectoryServices.AccountManagement.PrincipalOperationException : string -> System.DirectoryServices.AccountManagement.PrincipalOperationException
Public Sub New (message As String)
パラメーター
- message
- String
エラー メッセージのテキスト。
注釈
インスタンスは PrincipalOperationException 、 プロパティを Message の message
値に設定して初期化されます。 が null
の場合message
、Messageプロパティはシステム提供のメッセージに初期化されます。
適用対象
PrincipalOperationException(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.
指定した PrincipalOperationException インスタンスと SerializationInfo インスタンスから、StreamingContext クラスの新しいインスタンスを初期化します。
protected:
PrincipalOperationException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected PrincipalOperationException (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 PrincipalOperationException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.AccountManagement.PrincipalOperationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalOperationException
[<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.PrincipalOperationException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.AccountManagement.PrincipalOperationException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
新しい PrincipalOperationException をシリアル化するために必要な情報を格納している SerializationInfo。
- context
- StreamingContext
新しい PrincipalOperationException に関連付けられるシリアル化ストリームの転送元を格納する StreamingContext。
- 属性
適用対象
PrincipalOperationException(String, Exception)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定したエラー メッセージおよび指定した入れ子になった例外を使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。
public:
PrincipalOperationException(System::String ^ message, Exception ^ innerException);
public PrincipalOperationException (string message, Exception innerException);
new System.DirectoryServices.AccountManagement.PrincipalOperationException : string * Exception -> System.DirectoryServices.AccountManagement.PrincipalOperationException
Public Sub New (message As String, innerException As Exception)
パラメーター
- message
- String
エラー メッセージのテキスト。
- innerException
- Exception
入れ子になった例外。
注釈
インスタンスは PrincipalOperationException 、 プロパティが の Message 値 message
に設定され、 プロパティが InnerException の innerException
値に設定されて初期化されます。 が null
の場合message
、Messageプロパティはシステム提供のメッセージに初期化されます。 InnerExceptionは にnull
初期化されます。
適用対象
PrincipalOperationException(String, Int32)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定したエラー メッセージおよび指定したエラー コードを使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。
public:
PrincipalOperationException(System::String ^ message, int errorCode);
public PrincipalOperationException (string message, int errorCode);
new System.DirectoryServices.AccountManagement.PrincipalOperationException : string * int -> System.DirectoryServices.AccountManagement.PrincipalOperationException
Public Sub New (message As String, errorCode As Integer)
パラメーター
- message
- String
メッセージのテキストです。
- errorCode
- Int32
エラー コード。
注釈
インスタンスは PrincipalOperationException 、 プロパティが の Message 値 message
に設定され、 プロパティが ErrorCode の errorCode
値に設定されて初期化されます。 が null
の場合message
、Messageプロパティはシステム提供のメッセージに初期化されます。
適用対象
PrincipalOperationException(String, Exception, Int32)
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
- ソース:
- exceptions.cs
指定したエラー メッセージ、指定した入れ子になった例外、および指定したエラー コードを使用して、PrincipalOperationException クラスの新しいインスタンスをインスタンス化します。
public:
PrincipalOperationException(System::String ^ message, Exception ^ innerException, int errorCode);
public PrincipalOperationException (string message, Exception innerException, int errorCode);
new System.DirectoryServices.AccountManagement.PrincipalOperationException : string * Exception * int -> System.DirectoryServices.AccountManagement.PrincipalOperationException
Public Sub New (message As String, innerException As Exception, errorCode As Integer)
パラメーター
- message
- String
メッセージのテキストです。
- innerException
- Exception
入れ子になった例外。
- errorCode
- Int32
エラー コード。
注釈
インスタンスはPrincipalOperationException、 プロパティが のMessage値に設定され、 プロパティが InnerException のmessage
innerException
値に設定され、 ErrorCode が に設定されてerrorCode
初期化されます。 が null
の場合message
、Messageプロパティはシステム提供のメッセージに初期化されます。 InnerExceptionは にnull
初期化されます。
適用対象
.NET