Gets the message thread.

Namespace: DotNetNuke.Services.Social.Messaging.Internal
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
MessageThreadsView GetMessageThread(
	int conversationId,
	int userId,
	int afterMessageId,
	int numberOfRecords,
	string sortColumn,
	bool ascending,
	ref int totalRecords
)
Visual Basic
Function GetMessageThread ( 
	conversationId As Integer,
	userId As Integer,
	afterMessageId As Integer,
	numberOfRecords As Integer,
	sortColumn As String,
	ascending As Boolean,
	ByRef totalRecords As Integer
) As MessageThreadsView

Parameters

conversationId
Type: System..::..Int32
The conversation identifier.
userId
Type: System..::..Int32
The user identifier.
afterMessageId
Type: System..::..Int32
The after message identifier.
numberOfRecords
Type: System..::..Int32
The number of records.
sortColumn
Type: System..::..String
The sort column.
ascending
Type: System..::..Boolean
if set to true [ascending].
totalRecords
Type: System..::..Int32%
The total records.

Return Value

A MessageThreadsView

See Also