Retrieves the data for constructing the tag cloud.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual List<CloudItem> GetTagCloudData(
	string blogSlug,
	int maxNumberOfTags
)
Visual Basic
Public Overridable Function GetTagCloudData ( 
	blogSlug As String,
	maxNumberOfTags As Integer
) As List(Of CloudItem)
Visual C++
public:
virtual List<CloudItem^>^ GetTagCloudData(
	String^ blogSlug, 
	int maxNumberOfTags
)
F#
abstract GetTagCloudData : 
        blogSlug : string * 
        maxNumberOfTags : int -> List<CloudItem> 
override GetTagCloudData : 
        blogSlug : string * 
        maxNumberOfTags : int -> List<CloudItem> 

Parameters

blogSlug
Type: System..::..String
Blog slug - if empty all tags are fetched, if not only tags for a particular blog are fetched.
maxNumberOfTags
Type: System..::..Int32
Max number of tags to show in the cloud.

Return Value

Type: List<(Of <(<'CloudItem>)>)>
List of cloud items that can be used to construct the tag cloud.

Implements

IBlogBLL..::..GetTagCloudData(String, Int32)

See Also