Gets the topic item url with proper bookmark, topic name etc.

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

Syntax

C#
public virtual string GetTopicItemUrl(
	string boardUrl,
	Guid topicId,
	Nullable<int> currentPageIndex,
	Nullable<int> pageSize,
	Nullable<int> topicIndex,
	string pagerQueryString,
	out string linkCaption,
	out string linkId
)
Visual Basic
Public Overridable Function GetTopicItemUrl ( 
	boardUrl As String,
	topicId As Guid,
	currentPageIndex As Nullable(Of Integer),
	pageSize As Nullable(Of Integer),
	topicIndex As Nullable(Of Integer),
	pagerQueryString As String,
	<OutAttribute> ByRef linkCaption As String,
	<OutAttribute> ByRef linkId As String
) As String
Visual C++
public:
virtual String^ GetTopicItemUrl(
	String^ boardUrl, 
	Guid topicId, 
	Nullable<int> currentPageIndex, 
	Nullable<int> pageSize, 
	Nullable<int> topicIndex, 
	String^ pagerQueryString, 
	[OutAttribute] String^% linkCaption, 
	[OutAttribute] String^% linkId
)
F#
abstract GetTopicItemUrl : 
        boardUrl : string * 
        topicId : Guid * 
        currentPageIndex : Nullable<int> * 
        pageSize : Nullable<int> * 
        topicIndex : Nullable<int> * 
        pagerQueryString : string * 
        linkCaption : string byref * 
        linkId : string byref -> string 
override GetTopicItemUrl : 
        boardUrl : string * 
        topicId : Guid * 
        currentPageIndex : Nullable<int> * 
        pageSize : Nullable<int> * 
        topicIndex : Nullable<int> * 
        pagerQueryString : string * 
        linkCaption : string byref * 
        linkId : string byref -> string 

Parameters

boardUrl
Type: System..::..String
Board url
topicId
Type: System..::..Guid
Topic id
currentPageIndex
Type: System..::..Nullable<(Of <(<'Int32>)>)>
Current pager page index
pageSize
Type: System..::..Nullable<(Of <(<'Int32>)>)>
Pager page size
topicIndex
Type: System..::..Nullable<(Of <(<'Int32>)>)>
Topic index within the page
pagerQueryString
Type: System..::..String
Pager SEO query string
linkCaption
Type: System..::..String%
Link caption
linkId
Type: System..::..String%
Link id

Return Value

Type: String
Topic url

Implements

IDiscussionBLL..::..GetTopicItemUrl(String, Guid, Nullable<(Of <<'(Int32>)>>), Nullable<(Of <<'(Int32>)>>), Nullable<(Of <<'(Int32>)>>), String, String%, String%)

See Also