NotifyOfNewConnectionCallback 代理人

定義

NotifyOfNewConnectionCallback デリゲートは、参照追跡中に新しい接続が作成された場合に呼び出されます。

public delegate bool NotifyOfNewConnectionCallback(LdapConnection ^ primaryConnection, LdapConnection ^ referralFromConnection, System::String ^ newDistinguishedName, LdapDirectoryIdentifier ^ identifier, LdapConnection ^ newConnection, NetworkCredential ^ credential, long currentUserToken, int errorCodeFromBind);
public delegate bool NotifyOfNewConnectionCallback(LdapConnection primaryConnection, LdapConnection referralFromConnection, string newDistinguishedName, LdapDirectoryIdentifier identifier, LdapConnection newConnection, NetworkCredential credential, long currentUserToken, int errorCodeFromBind);
type NotifyOfNewConnectionCallback = delegate of LdapConnection * LdapConnection * string * LdapDirectoryIdentifier * LdapConnection * NetworkCredential * int64 * int -> bool
Public Delegate Function NotifyOfNewConnectionCallback(primaryConnection As LdapConnection, referralFromConnection As LdapConnection, newDistinguishedName As String, identifier As LdapDirectoryIdentifier, newConnection As LdapConnection, credential As NetworkCredential, currentUserToken As Long, errorCodeFromBind As Integer) As Boolean 

パラメーター

primaryConnection
LdapConnection

プライマリ接続を指定する LdapConnection オブジェクト。

referralFromConnection
LdapConnection

参照を提供した接続を指定する LdapConnection オブジェクト。

newDistinguishedName
String

参照されるサーバーの目的のエントリの識別名を指定する String オブジェクト。

identifier
LdapDirectoryIdentifier

参照される LDAP ディレクトリの識別子を指定する LdapDirectoryIdentifier オブジェクト。

newConnection
LdapConnection

参照追跡中に作成された新しい接続を指定する LdapConnection オブジェクト。

credential
NetworkCredential

参照されるサーバーに渡すための資格情報を指定する NetworkCredential オブジェクト。

currentUserToken
Int64

現在のユーザーの LUID。

errorCodeFromBind
Int32

バインド操作からのエラー コードを指定する Int32 オブジェクト。

戻り値

接続がキャッシュに保存される場合、true。 接続のキャッシュ保存を要求しない場合、false

拡張メソッド

GetMethodInfo(Delegate)

指定したデリゲートによって表されるメソッドを表すオブジェクトを取得します。

適用対象