Parses a tag string and constructs a 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 ParseTags(
	int entityType,
	Guid parentId,
	UnitOfWork2 uow,
	EntityCollection<SnRelationshipEntity> relationships,
	string tags
)
Visual Basic
Sub ParseTags ( 
	entityType As Integer,
	parentId As Guid,
	uow As UnitOfWork2,
	relationships As EntityCollection(Of SnRelationshipEntity),
	tags As String
)
Visual C++
void ParseTags(
	int entityType, 
	Guid parentId, 
	UnitOfWork2^ uow, 
	EntityCollection<SnRelationshipEntity^>^ relationships, 
	String^ tags
)
F#
abstract ParseTags : 
        entityType : int * 
        parentId : Guid * 
        uow : UnitOfWork2 * 
        relationships : EntityCollection<SnRelationshipEntity> * 
        tags : string -> unit 

Parameters

entityType
Type: System..::..Int32
Entity type
parentId
Type: System..::..Guid
Parent entity Id
uow
Type: UnitOfWork2
Unit of work
relationships
Type: EntityCollection<(Of <(<'SnRelationshipEntity>)>)>
Relationships
tags
Type: System..::..String
Tag string

See Also