Gets the related content tags.

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

Syntax

C#
protected virtual List<string> GetRelatedContentTags(
	Guid sourceContentId,
	int sourceContentEntityType
)
Visual Basic
Protected Overridable Function GetRelatedContentTags ( 
	sourceContentId As Guid,
	sourceContentEntityType As Integer
) As List(Of String)
Visual C++
protected:
virtual List<String^>^ GetRelatedContentTags(
	Guid sourceContentId, 
	int sourceContentEntityType
)
F#
abstract GetRelatedContentTags : 
        sourceContentId : Guid * 
        sourceContentEntityType : int -> List<string> 
override GetRelatedContentTags : 
        sourceContentId : Guid * 
        sourceContentEntityType : int -> List<string> 

Parameters

sourceContentId
Type: System..::..Guid
Content id.
sourceContentEntityType
Type: System..::..Int32
Content entity type.

Return Value

Type: List<(Of <(<'String>)>)>
List of tags related to content.

See Also