Sets the social identity ID for a particular user and provider name.

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

Syntax

C#
protected virtual bool SetSocialIdentity(
	MembershipUser authenticatedUser,
	UserProfile profile
)
Visual Basic
Protected Overridable Function SetSocialIdentity ( 
	authenticatedUser As MembershipUser,
	profile As UserProfile
) As Boolean
Visual C++
protected:
virtual bool SetSocialIdentity(
	MembershipUser^ authenticatedUser, 
	UserProfile^ profile
)
F#
abstract SetSocialIdentity : 
        authenticatedUser : MembershipUser * 
        profile : UserProfile -> bool 
override SetSocialIdentity : 
        authenticatedUser : MembershipUser * 
        profile : UserProfile -> bool 

Parameters

authenticatedUser
Type: System.Web.Security..::..MembershipUser
User.
profile
Type: UserProfile
User profile.

Return Value

Type: Boolean
True if the operation as sucessful, false otherwise.

See Also