Get journal info.

Namespace: DotNetNuke.Services.Journal
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
JournalItem GetJournalItem(
	int portalId,
	int userId,
	int journalId,
	bool includeAllItems,
	bool isDeleted,
	bool securityCheck
)
Visual Basic
Function GetJournalItem ( 
	portalId As Integer,
	userId As Integer,
	journalId As Integer,
	includeAllItems As Boolean,
	isDeleted As Boolean,
	securityCheck As Boolean
) As JournalItem

Parameters

portalId
Type: System..::..Int32
Id of portal.
userId
Type: System..::..Int32
Id of current user, if securityCheck set as True, will check whether this user has permission to view the journal.
journalId
Type: System..::..Int32
Id of Journal.
includeAllItems
Type: System..::..Boolean
Whether include deleted items.
isDeleted
Type: System..::..Boolean
Whether get deleted item.
securityCheck
Type: System..::..Boolean
Whether check current user has permission to get journal.

Return Value

Journal Object.

See Also