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)
public abstract ReadOnlyCollection<AddressBookEntry> Find (
EnvelopeRecipientCollection recipients
)
public:
virtual ReadOnlyCollection<AddressBookEntry^>^ Find (
EnvelopeRecipientCollection^ recipients
) abstract
public abstract ReadOnlyCollection<AddressBookEntry> Find (
EnvelopeRecipientCollection recipients
)
public abstract function Find (
recipients : EnvelopeRecipientCollection
) : ReadOnlyCollection<AddressBookEntry>
Parameters
- recipients
An instance of the EnvelopeRecipientCollection object that contains proxy addresses, primary addresses, or both.
Return Value
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 null.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
Windows XP Professional with Service Pack 2 (SP2), Windows Server 2003,
Target Platforms
Windows Server 2003
See Also