AddressBook.Find method (EnvelopeRecipientCollection)
When overridden in a derived class, the Find method finds addresses in the address book that are based on the addresses specified in the recipients parameter.
Namespace: Microsoft.Exchange.Data.Transport
Assembly: Microsoft.Exchange.Data.Transport (in Microsoft.Exchange.Data.Transport.dll)
Syntax
'Declaration
Public MustOverride Function Find ( _
recipients As EnvelopeRecipientCollection _
) As ReadOnlyCollection(Of AddressBookEntry)
'Usage
Dim instance As AddressBook
Dim recipients As EnvelopeRecipientCollection
Dim returnValue As ReadOnlyCollection(Of AddressBookEntry)
returnValue = instance.Find(recipients)
public abstract ReadOnlyCollection<AddressBookEntry> Find(
EnvelopeRecipientCollection recipients
)
Parameters
recipients
Type: Microsoft.Exchange.Data.Transport.EnvelopeRecipientCollectionAn instance of the EnvelopeRecipientCollection object that contains proxy addresses, primary addresses, or both.
Return value
Type: System.Collections.ObjectModel.ReadOnlyCollection<AddressBookEntry>
When overridden in a derived class, the Find method returns an array of AddressBookEntry objects.
Remarks
If an address is not in the address book, the corresponding entry in the returned array will be a null reference (Nothing in Visual Basic).