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.
파일 보기 프로젝트 열기: ayende/Subtext

공개 메소드들

메소드 설명
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