AddressBook.Find Method (RoutingAddress[])
When overridden in a derived class, the Find method finds addresses in the address book that are based on the addresses specified in the smtpAddresses parameter.
Namespace: Microsoft.Exchange.Data.Transport
Assembly: Microsoft.Exchange.Data.Transport (in microsoft.exchange.data.transport.dll)
Syntax
'Declaration
Public MustOverride Function Find ( _
ParamArray smtpAddresses As RoutingAddress() _
) As ReadOnlyCollection(Of AddressBookEntry)
public abstract ReadOnlyCollection<AddressBookEntry> Find (
params RoutingAddress[] smtpAddresses
)
public:
virtual ReadOnlyCollection<AddressBookEntry^>^ Find (
... array<RoutingAddress>^ smtpAddresses
) abstract
public abstract ReadOnlyCollection<AddressBookEntry> Find (
RoutingAddress[] smtpAddresses
)
public abstract function Find (
... smtpAddresses : RoutingAddress[]
) : ReadOnlyCollection<AddressBookEntry>
Parameters
- smtpAddresses
An instance of the RoutingAddress object that contains proxy addresses or 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