Gets all Tab Versions of an existing Tab

Namespace: DotNetNuke.Entities.Tabs.TabVersions
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
IEnumerable<TabVersion> GetTabVersions(
	int tabId,
	bool ignoreCache = false
)
Visual Basic
Function GetTabVersions ( 
	tabId As Integer,
	Optional ignoreCache As Boolean = false
) As IEnumerable(Of TabVersion)

Parameters

tabId
Type: System..::..Int32
Tha Tab ID to be quiered
ignoreCache
Type: System..::..Boolean
If true, the method will not use the Caching Storage

Return Value

List of TabVersion objects

See Also