Deletes discussion board

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

Syntax

C#
public virtual bool DeleteBoard(
	Nullable<Guid> groupId,
	Guid boardId
)
Visual Basic
Public Overridable Function DeleteBoard ( 
	groupId As Nullable(Of Guid),
	boardId As Guid
) As Boolean
Visual C++
public:
virtual bool DeleteBoard(
	Nullable<Guid> groupId, 
	Guid boardId
)
F#
abstract DeleteBoard : 
        groupId : Nullable<Guid> * 
        boardId : Guid -> bool 
override DeleteBoard : 
        groupId : Nullable<Guid> * 
        boardId : Guid -> bool 

Parameters

groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group Id.
boardId
Type: System..::..Guid
Discussion board id

Return Value

Type: Boolean
True if discussion board is deleted

Implements

IDiscussionBLL..::..DeleteBoard(Nullable<(Of <<'(Guid>)>>), Guid)

See Also