ActiveDirectoryObjectNotFoundException コンストラクター

定義

ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

オーバーロード

ActiveDirectoryObjectNotFoundException()

ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

ActiveDirectoryObjectNotFoundException(String)

指定したエラー メッセージを使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

ActiveDirectoryObjectNotFoundException(SerializationInfo, StreamingContext)
古い.

シリアル化情報とストリーム コンテキストを指定して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

ActiveDirectoryObjectNotFoundException(String, Exception)

指定したエラー メッセージと基になる例外オブジェクトを使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

ActiveDirectoryObjectNotFoundException(String, Type, String)

指定したエラー メッセージと要求されたオブジェクトに関する情報を使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

ActiveDirectoryObjectNotFoundException()

ソース:
Exception.cs
ソース:
Exception.cs
ソース:
Exception.cs

ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

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

こちらもご覧ください

適用対象

ActiveDirectoryObjectNotFoundException(String)

ソース:
Exception.cs
ソース:
Exception.cs
ソース:
Exception.cs

指定したエラー メッセージを使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

public:
 ActiveDirectoryObjectNotFoundException(System::String ^ message);
public ActiveDirectoryObjectNotFoundException (string message);
public ActiveDirectoryObjectNotFoundException (string? message);
new System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException : string -> System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException
Public Sub New (message As String)

パラメーター

message
String

エラーについて説明するメッセージ。

こちらもご覧ください

適用対象

ActiveDirectoryObjectNotFoundException(SerializationInfo, StreamingContext)

ソース:
Exception.cs
ソース:
Exception.cs
ソース:
Exception.cs

注意事項

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

シリアル化情報とストリーム コンテキストを指定して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

例外の SerializationInfo オブジェクト。

context
StreamingContext

例外の StreamingContext

属性

こちらもご覧ください

適用対象

ActiveDirectoryObjectNotFoundException(String, Exception)

ソース:
Exception.cs
ソース:
Exception.cs
ソース:
Exception.cs

指定したエラー メッセージと基になる例外オブジェクトを使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

public:
 ActiveDirectoryObjectNotFoundException(System::String ^ message, Exception ^ inner);
public ActiveDirectoryObjectNotFoundException (string message, Exception inner);
public ActiveDirectoryObjectNotFoundException (string? message, Exception? inner);
new System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException : string * Exception -> System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException
Public Sub New (message As String, inner As Exception)

パラメーター

message
String

エラーについて説明するメッセージ。

inner
Exception

基になる例外情報を格納している Exception オブジェクト。

こちらもご覧ください

適用対象

ActiveDirectoryObjectNotFoundException(String, Type, String)

ソース:
Exception.cs
ソース:
Exception.cs
ソース:
Exception.cs

指定したエラー メッセージと要求されたオブジェクトに関する情報を使用して、ActiveDirectoryObjectNotFoundException クラスの新しいインスタンスを初期化します。

public:
 ActiveDirectoryObjectNotFoundException(System::String ^ message, Type ^ type, System::String ^ name);
public ActiveDirectoryObjectNotFoundException (string message, Type type, string name);
public ActiveDirectoryObjectNotFoundException (string? message, Type? type, string? name);
new System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException : string * Type * string -> System.DirectoryServices.ActiveDirectory.ActiveDirectoryObjectNotFoundException
Public Sub New (message As String, type As Type, name As String)

パラメーター

message
String

エラーについて説明するメッセージ。

type
Type

要求されたオブジェクトの型を記述する Type オブジェクト。

name
String

要求されたオブジェクトの名前が格納された String

こちらもご覧ください

適用対象