DereferenceConnectionCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |