Parses a tag string and constructs a news tag collection for a given entity.

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

Syntax

C#
void ParseNewsTags(
	UnitOfWork2 uow,
	NewsItemEntity entity,
	List<string> tags
)
Visual Basic
Sub ParseNewsTags ( 
	uow As UnitOfWork2,
	entity As NewsItemEntity,
	tags As List(Of String)
)
Visual C++
void ParseNewsTags(
	UnitOfWork2^ uow, 
	NewsItemEntity^ entity, 
	List<String^>^ tags
)
F#
abstract ParseNewsTags : 
        uow : UnitOfWork2 * 
        entity : NewsItemEntity * 
        tags : List<string> -> unit 

Parameters

uow
Type: UnitOfWork2
Unit of work
entity
Type: NewsItemEntity
News entity
tags
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
Tag string

See Also