|
RDOSocialActivities object |
RDOSocialActivities collection
represents a list of activities of a user.
Returned by:
RDOSocialConnector.GetActivities
The example below displays the number
of activities of the specified Facebook user.
userToFind = "user@domain.demo"
set Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
set SocialConnector = Session.SocialConnectors.Item("Facebook")
set activities = SocialConnector.GetActivities(userToFind,
#10/1/2013#)
MsgBox activities.Count |
Properties
Methods
|
Derived from:
IDispatch
|
|
Properties |
|
Count |
integer, read-only. Returns he number of activities in the collection.
|
|
RawXml |
string, read-only.
Returns the raw activity XML as returned as the Social Network provider.
See MSDN for the
activity XML schema.
Redemption parses this XML and represents the activities as the
collection of the RDOSocialActivity
objects.
|
|
|
Methods |
|
Item(Index) |
Returns RDOSocialActivity object corresponding to the given index (1
through Count).
|
|
|