Ensure discussion board topic exists.

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

Syntax

C#
public virtual SnDiscussionTopicEntity EnsureTopicExists(
	Guid boardId,
	Guid topicId,
	Guid userId,
	string title,
	int maxTags
)
Visual Basic
Public Overridable Function EnsureTopicExists ( 
	boardId As Guid,
	topicId As Guid,
	userId As Guid,
	title As String,
	maxTags As Integer
) As SnDiscussionTopicEntity
Visual C++
public:
virtual SnDiscussionTopicEntity^ EnsureTopicExists(
	Guid boardId, 
	Guid topicId, 
	Guid userId, 
	String^ title, 
	int maxTags
)
F#
abstract EnsureTopicExists : 
        boardId : Guid * 
        topicId : Guid * 
        userId : Guid * 
        title : string * 
        maxTags : int -> SnDiscussionTopicEntity 
override EnsureTopicExists : 
        boardId : Guid * 
        topicId : Guid * 
        userId : Guid * 
        title : string * 
        maxTags : int -> SnDiscussionTopicEntity 

Parameters

boardId
Type: System..::..Guid
Discussion board id
topicId
Type: System..::..Guid
Topic Id
userId
Type: System..::..Guid
User id that created discussion board topic
title
Type: System..::..String
Title of the discussion board topic
maxTags
Type: System..::..Int32
Maximum number of tags

Return Value

Type: SnDiscussionTopicEntity
Discussion board topic

Implements

IDiscussionBLL..::..EnsureTopicExists(Guid, Guid, Guid, String, Int32)

See Also