Fetches collections blog entity using its slug. If exact match cannot be located, the blog with the most similar slug will be returned, enabling the LIKE search operation in the blog manager screen.

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

Syntax

C#
EntityCollection<BlogEntity> GetBlogs(
	string slug,
	int pageSize
)
Visual Basic
Function GetBlogs ( 
	slug As String,
	pageSize As Integer
) As EntityCollection(Of BlogEntity)
Visual C++
EntityCollection<BlogEntity^>^ GetBlogs(
	String^ slug, 
	int pageSize
)
F#
abstract GetBlogs : 
        slug : string * 
        pageSize : int -> EntityCollection<BlogEntity> 

Parameters

slug
Type: System..::..String
Slug.
pageSize
Type: System..::..Int32
Page size.

Return Value

Type: EntityCollection<(Of <(<'BlogEntity>)>)>
Collection of blog entities.

See Also