Create new discussion board

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

Syntax

C#
public virtual SnDiscussionBoardEntity CreateBoard(
	Nullable<Guid> snGroupId,
	Nullable<Guid> userId,
	string name,
	string description,
	string moderators,
	List<Guid> roleIds
)
Visual Basic
Public Overridable Function CreateBoard ( 
	snGroupId As Nullable(Of Guid),
	userId As Nullable(Of Guid),
	name As String,
	description As String,
	moderators As String,
	roleIds As List(Of Guid)
) As SnDiscussionBoardEntity
Visual C++
public:
virtual SnDiscussionBoardEntity^ CreateBoard(
	Nullable<Guid> snGroupId, 
	Nullable<Guid> userId, 
	String^ name, 
	String^ description, 
	String^ moderators, 
	List<Guid>^ roleIds
)
F#
abstract CreateBoard : 
        snGroupId : Nullable<Guid> * 
        userId : Nullable<Guid> * 
        name : string * 
        description : string * 
        moderators : string * 
        roleIds : List<Guid> -> SnDiscussionBoardEntity 
override CreateBoard : 
        snGroupId : Nullable<Guid> * 
        userId : Nullable<Guid> * 
        name : string * 
        description : string * 
        moderators : string * 
        roleIds : List<Guid> -> SnDiscussionBoardEntity 

Parameters

snGroupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Social network group id
userId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
User id that created discussion board
name
Type: System..::..String
Name of the discussion board
description
Type: System..::..String
Description of the discussion board
moderators
Type: System..::..String
Board moderators
roleIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Membership role ids

Return Value

Type: SnDiscussionBoardEntity
Discussion board

Implements

IDiscussionBLL..::..CreateBoard(Nullable<(Of <<'(Guid>)>>), Nullable<(Of <<'(Guid>)>>), String, String, String, List<(Of <<'(Guid>)>>))

See Also