C# Класс Subtext.Framework.Tags

Static class used to retrieve tags from the data store. Tags are simple enough that generic collections are used instead of custom Tag objects.
Показать файл Открыть проект

Открытые методы

Метод Описание
ComputeWeight ( double factor, double standardDeviation ) : int
GetTopTags ( int itemCount ) : IList

Gets the top tags.

SetTagsOnEntry ( Entry entry ) : void

Parses and sets set of tags on the entry.

SetTagsOnEntry ( int entryId, IList tags ) : void

Sets the tags on entry.

Описание методов

ComputeWeight() публичный статический Метод

public static ComputeWeight ( double factor, double standardDeviation ) : int
factor double
standardDeviation double
Результат int

GetTopTags() публичный статический Метод

Gets the top tags.
public static GetTopTags ( int itemCount ) : IList
itemCount int The item count.
Результат IList

SetTagsOnEntry() публичный статический Метод

Parses and sets set of tags on the entry.
public static SetTagsOnEntry ( Entry entry ) : void
entry Subtext.Framework.Components.Entry
Результат void

SetTagsOnEntry() публичный статический Метод

Sets the tags on entry.
public static SetTagsOnEntry ( int entryId, IList tags ) : void
entryId int The entry id.
tags IList The tags.
Результат void