AddressBook.IsSameRecipient Method
When overridden in a derived class, the IsSameRecipient method indicates whether the specified addresses refer to the same recipient.
Namespace: Microsoft.Exchange.Data.Transport
Assembly: Microsoft.Exchange.Data.Transport (in microsoft.exchange.data.transport.dll)
Syntax
'Declaration
Public MustOverride Function IsSameRecipient ( _
proxyAddressA As RoutingAddress, _
proxyAddressB As RoutingAddress _
) As Boolean
public abstract bool IsSameRecipient (
RoutingAddress proxyAddressA,
RoutingAddress proxyAddressB
)
public:
virtual bool IsSameRecipient (
RoutingAddress proxyAddressA,
RoutingAddress proxyAddressB
) abstract
public abstract boolean IsSameRecipient (
RoutingAddress proxyAddressA,
RoutingAddress proxyAddressB
)
public abstract function IsSameRecipient (
proxyAddressA : RoutingAddress,
proxyAddressB : RoutingAddress
) : boolean
Parameters
- proxyAddressA
The first recipient address to compare.
- proxyAddressB
The second recipient address to compare.
Return Value
The IsSameRecipient method returns true if the specified addresses refer to the same recipient; otherwise, the method returns false.
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