Deletes user social connection from the database.

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

Syntax

C#
public virtual void DeleteUserSocialEntity(
	string provider,
	Guid userId
)
Visual Basic
Public Overridable Sub DeleteUserSocialEntity ( 
	provider As String,
	userId As Guid
)
Visual C++
public:
virtual void DeleteUserSocialEntity(
	String^ provider, 
	Guid userId
)
F#
abstract DeleteUserSocialEntity : 
        provider : string * 
        userId : Guid -> unit 
override DeleteUserSocialEntity : 
        provider : string * 
        userId : Guid -> unit 

Parameters

provider
Type: System..::..String
Provider for which the connection should be deleted.
userId
Type: System..::..Guid
Id of the user for which the connection should be deleted.

Implements

IUserBLL..::..DeleteUserSocialEntity(String, Guid)

See Also