Obtains social identities for currently set user.

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

Syntax

C#
List<UserSocialIdentityEntity> GetUserSocialIdentities(
	Guid userId
)
Visual Basic
Function GetUserSocialIdentities ( 
	userId As Guid
) As List(Of UserSocialIdentityEntity)
Visual C++
List<UserSocialIdentityEntity^>^ GetUserSocialIdentities(
	Guid userId
)
F#
abstract GetUserSocialIdentities : 
        userId : Guid -> List<UserSocialIdentityEntity> 

Parameters

userId
Type: System..::..Guid
Id of the user for which the social identities should be obtained.

Return Value

Type: List<(Of <(<'UserSocialIdentityEntity>)>)>
List of social identities for current user.

See Also