Creates open social event.

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

Syntax

C#
public Event CreateOpenSocialEvent(
	Guid userId,
	Guid consumerId,
	string content
)
Visual Basic
Public Function CreateOpenSocialEvent ( 
	userId As Guid,
	consumerId As Guid,
	content As String
) As Event
Visual C++
public:
Event^ CreateOpenSocialEvent(
	Guid userId, 
	Guid consumerId, 
	String^ content
)
F#
member CreateOpenSocialEvent : 
        userId : Guid * 
        consumerId : Guid * 
        content : string -> Event 

Parameters

userId
Type: System..::..Guid
User id.
consumerId
Type: System..::..Guid
Consumer id.
content
Type: System..::..String
Event content.

Return Value

Type: Event
Created event.

See Also