Interface ITag
Represents a tag entity.
Namespace: Umbraco.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public interface ITag : IEntity, IDeepCloneable, IRememberBeingDirty, ICanBeDirty
Properties
View SourceGroup
Gets or sets the tag group.
Declaration
[DataMember]
string Group { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LanguageId
Gets or sets the tag language.
Declaration
[DataMember]
int? LanguageId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
NodeCount
Gets the number of nodes tagged with this tag.
Declaration
int NodeCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Remarks
Only when returning from queries.
Text
Gets or sets the tag text.
Declaration
[DataMember]
string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |