EnvelopeRecipientCollection.Remove method (EnvelopeRecipient)
When overridden in a derived class, the Remove method removes a recipient from the collection based on the specified EnvelopeRecipient.
Namespace: Microsoft.Exchange.Data.Transport
Assembly: Microsoft.Exchange.Data.Transport (in Microsoft.Exchange.Data.Transport.dll)
Syntax
'Declaration
Public MustOverride Function Remove ( _
recipient As EnvelopeRecipient _
) As Boolean
'Usage
Dim instance As EnvelopeRecipientCollection
Dim recipient As EnvelopeRecipient
Dim returnValue As Boolean
returnValue = instance.Remove(recipient)
public abstract bool Remove(
EnvelopeRecipient recipient
)
Parameters
recipient
Type: Microsoft.Exchange.Data.Transport.EnvelopeRecipientThe recipient to remove.
Return value
Type: System.Boolean
The Remove method returns true if the recipient specified by the recipient parameter existed in the collection and the method successfully removed the recipient from the collection; otherwise, the method returns false.
See also
Reference
EnvelopeRecipientCollection class