[This is preliminary documentation and is subject to change.]

Get all the details belonging to the Topic.

Namespace:  OfficeClip.DBLayer.OfficePortal
Assembly:  OfficeClip.DBLayer (in OfficeClip.DBLayer)
Version: 8.1.1.0

Syntax

C#
public void GetTopicDetail(
	int topicId,
	ref int forumId,
	ref string name,
	ref string desc,
	ref int cuserid
)
Visual Basic (Declaration)
Public Sub GetTopicDetail ( _
	topicId As Integer, _
	ByRef forumId As Integer, _
	ByRef name As String, _
	ByRef desc As String, _
	ByRef cuserid As Integer _
)
Visual C++
public:
void GetTopicDetail(
	int topicId, 
	int% forumId, 
	String^% name, 
	String^% desc, 
	int% cuserid
)

Parameters

topicId
Type: System..::.Int32
The incoming Topic Id.
forumId
Type: System..::.Int32%
The forum Id of the Forum to which this topic belongs.
name
Type: System..::.String%
Topic Name.
desc
Type: System..::.String%
Topic Description.
cuserid
Type: System..::.Int32%
The userId, of the user who created the topic.

See Also