Receive Method
      
 

Description

Receives VCard from the server.


Return Type

None  


Syntax

object.Receive



The Receive Method syntax has these parts:

Part Description
object An expression evaluating to an object of type XMPPVCard.

Remarks

The Receive Method is used for receiving VCard information from the server. It can be used for updating your local VCard information, or when you wish to receive someone else's VCard.

In order to retrieve someone's VCard from server, you can do something like this (by specifying user's JID):

wodXMPP1.Contacts("user@wippien.com").VCard.Receive

Or like this (by specifying user's index):

wodXMPP1.Contacts(0).VCard.Receive

In case of using index, the index parameter that you provide will be used to access a specific item in XMPPContacts Collection.