Gets the discussion pinned boards.

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

Syntax

C#
public virtual EntityCollection<SnDiscussionBoardEntity> GetPinnedBoards(
	Nullable<Guid> languageId,
	Nullable<Guid> groupId,
	List<Guid> roleIds
)
Visual Basic
Public Overridable Function GetPinnedBoards ( 
	languageId As Nullable(Of Guid),
	groupId As Nullable(Of Guid),
	roleIds As List(Of Guid)
) As EntityCollection(Of SnDiscussionBoardEntity)
Visual C++
public:
virtual EntityCollection<SnDiscussionBoardEntity^>^ GetPinnedBoards(
	Nullable<Guid> languageId, 
	Nullable<Guid> groupId, 
	List<Guid>^ roleIds
)
F#
abstract GetPinnedBoards : 
        languageId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        roleIds : List<Guid> -> EntityCollection<SnDiscussionBoardEntity> 
override GetPinnedBoards : 
        languageId : Nullable<Guid> * 
        groupId : Nullable<Guid> * 
        roleIds : List<Guid> -> EntityCollection<SnDiscussionBoardEntity> 

Parameters

languageId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Language Id.
groupId
Type: System..::..Nullable<(Of <(<'Guid>)>)>
Group Id.
roleIds
Type: System.Collections.Generic..::..List<(Of <(<'Guid>)>)>
Role Ids.

Return Value

Type: EntityCollection<(Of <(<'SnDiscussionBoardEntity>)>)>
Collection of pinned boards

Implements

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

See Also