Expand Minimize
This topic has not yet been rated - Rate this topic

NotifyOfNewConnectionCallback Delegate

The NotifyOfNewConnectionCallback delegate is called if a new connection was created while chasing a referral.

Namespace:  System.DirectoryServices.Protocols
Assembly:  System.DirectoryServices.Protocols (in System.DirectoryServices.Protocols.dll)
public delegate bool NotifyOfNewConnectionCallback(
	LdapConnection primaryConnection,
	LdapConnection referralFromConnection,
	string newDistinguishedName,
	LdapDirectoryIdentifier identifier,
	LdapConnection newConnection,
	NetworkCredential credential,
	long currentUserToken,
	int errorCodeFromBind
)

Parameters

primaryConnection
Type: System.DirectoryServices.Protocols.LdapConnection

A LdapConnection object that specifies the primary connection.

referralFromConnection
Type: System.DirectoryServices.Protocols.LdapConnection

A LdapConnection object that specifies the connection which provided the referral.

newDistinguishedName
Type: System.String

A String object that specifies the distinguished name of the desired entry in the referred server.

identifier
Type: System.DirectoryServices.Protocols.LdapDirectoryIdentifier

A LdapDirectoryIdentifier object that specifies the identifier the referred LDAP directory.

newConnection
Type: System.DirectoryServices.Protocols.LdapConnection

A LdapConnection object that specifies the new connection created in the course of chasing a referral.

credential
Type: System.Net.NetworkCredential

A NetworkCredential object that specifies the credentials to pass to the referred server.

currentUserToken
Type: System.Int64

The LUID of the current user.

errorCodeFromBind
Type: System.Int32

A Int32 object that specifies the error code from the bind operation.

Return Value

Type: System.Boolean
true if the connection is to be cached. false if not required to cache the connection.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.