RDOSocialPersons object

 

RDOSocialPersons object represents a collection of the social network users returned by RDOSocialConnector.FindPerson.

 

Returned by:

RDOSocialConnector.FindPerson

 

The example below displays the full name of a user with the specified email address .

userToFind = "user@domain.demo"
set Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
set SocialConnector = Session.SocialConnectors.Item("Linkedin")
set persons = SocialConnector.FindPerson(userToFind)
for each person in persons
    MsgBox
 person.FullName
next

 

Properties

Methods

 


Derived from: IDispatch


Properties


Count
integer, read-only. Returns he number of items (RDOSocialPerson) in the collection.
 

Methods


Item(Index)
Returns RDOSocialPerson object corresponding to the given index (1 through Count).