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

Returns a dataset of all the Replies belonging to a Topic.

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

Syntax

C#
public DataSet GetReplies(
	int topicId
)
Visual Basic (Declaration)
Public Function GetReplies ( _
	topicId As Integer _
) As DataSet
Visual C++
public:
DataSet^ GetReplies(
	int topicId
)

Parameters

topicId
Type: System..::.Int32
The incoming Topic Id.

Return Value

Returns a dataset containing the list of all the Replies belonging to that particular Topic. DataSet consists of a single DataTable with the following columns.
  • replyAuther (System.String) Name of the user who has posted the reply.
  • replyId (System.Int32) Id of the reply.
  • replyPostedByUserId (System.Int32) Id of the user who posted the reply.
  • topicId (System.Int32) Id of the topic in which the reply is posted.
  • replyDesc (System.String) Description of the reply.
  • replyPostedTimestamp (System.DateTime) Date and time when the Current reply is posted.
  • replyRefPostedTimestamp (System.DateTime) Date and time of the posting in reference to which this Current reply is posted.
  • replyRefAuther (System.String) Name of the user in reference to whose posting this Current reply is posted.

See Also