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

Inserts a New Reply into the Database.

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

Syntax

C#
public int InsertReply(
	int topicId,
	int forumId,
	string topicDesc,
	int parentReplyId,
	int userId
)
Visual Basic (Declaration)
Public Function InsertReply ( _
	topicId As Integer, _
	forumId As Integer, _
	topicDesc As String, _
	parentReplyId As Integer, _
	userId As Integer _
) As Integer
Visual C++
public:
int InsertReply(
	int topicId, 
	int forumId, 
	String^ topicDesc, 
	int parentReplyId, 
	int userId
)

Parameters

topicId
Type: System..::.Int32
The Name of the Topic.
forumId
Type: System..::.Int32
The Name of the Topic.
topicDesc
Type: System..::.String
Reply Message.
parentReplyId
Type: System..::.Int32
Reply ID if this post is in reply to a reply otherwise null if it is in reply to the topic itself.
userId
Type: System..::.Int32
The unique id for the user.

Return Value

Reply Id.

See Also