DereferenceConnectionCallback Delegate

Definition

The DereferenceConnectionCallback delegate dereferences a connection that is no longer required. The connection was probably established through a successful call to the QueryForConnectionCallback or NotifyOfNewConnectionCallback delegate.

public delegate void DereferenceConnectionCallback(LdapConnection ^ primaryConnection, LdapConnection ^ connectionToDereference);
public delegate void DereferenceConnectionCallback(LdapConnection primaryConnection, LdapConnection connectionToDereference);
type DereferenceConnectionCallback = delegate of LdapConnection * LdapConnection -> unit
Public Delegate Sub DereferenceConnectionCallback(primaryConnection As LdapConnection, connectionToDereference As LdapConnection)

Parameters

primaryConnection
LdapConnection

An LdapConnection object that specifies the primary connection.

connectionToDereference
LdapConnection

An LdapConnection object that specifies the connection to dereference.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to