Parses a tag string and constructs a BlogPostTags collection for a given blog post entity.

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

Syntax

C#
public virtual void ParseTags(
	UnitOfWork2 uow,
	BlogPostEntity blogPost,
	string tags
)
Visual Basic
Public Overridable Sub ParseTags ( 
	uow As UnitOfWork2,
	blogPost As BlogPostEntity,
	tags As String
)
Visual C++
public:
virtual void ParseTags(
	UnitOfWork2^ uow, 
	BlogPostEntity^ blogPost, 
	String^ tags
)
F#
abstract ParseTags : 
        uow : UnitOfWork2 * 
        blogPost : BlogPostEntity * 
        tags : string -> unit 
override ParseTags : 
        uow : UnitOfWork2 * 
        blogPost : BlogPostEntity * 
        tags : string -> unit 

Parameters

uow
Type: UnitOfWork2
Unit of work
blogPost
Type: BlogPostEntity
Blog post entity
tags
Type: System..::..String
Tag string

Implements

IBlogBLL..::..ParseTags(UnitOfWork2, BlogPostEntity, String)

See Also