Gets all social networking - friend lists for a given user id.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
EntityCollection<SnFriendListEntity> GetFriendLists(
	Guid userId
)
Visual Basic
Function GetFriendLists ( 
	userId As Guid
) As EntityCollection(Of SnFriendListEntity)
Visual C++
EntityCollection<SnFriendListEntity^>^ GetFriendLists(
	Guid userId
)
F#
abstract GetFriendLists : 
        userId : Guid -> EntityCollection<SnFriendListEntity> 

Parameters

userId
Type: System..::..Guid
User id

Return Value

Type: EntityCollection<(Of <(<'SnFriendListEntity>)>)>
Collection of friend lists for a given user id

See Also