C# Класс newtelligence.DasBlog.Web.Core.ValidTagCollection

Наследование: ICollection
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
IEnumerable IEnumerator

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

Метод Описание
Add ( ValidTag tag ) : void
ICollection ( Array array, int index ) : void

Copies the ValidTags to the array, starting at the index.

IsValidTag ( string tagName ) : bool

Determines if the tagName is valid.

ToJavaScriptArray ( ) : string
ToString ( ) : string

Returns a T:System.String that represents the current ValidTag.

ValidTagCollection ( ) : System
ValidTagCollection ( string tagsDefinition ) : System

Initializes a new instance of the ValidTagCollection class.

this ( int index ) : ValidTag
this ( string tagName ) : ValidTag

Gets the ValidTag with the specified tag name.

Приватные методы

Метод Описание
IEnumerable ( ) : IEnumerator

Gets the enumerator over the tags.

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

Add() публичный Метод

public Add ( ValidTag tag ) : void
tag ValidTag
Результат void

ICollection() публичный Метод

Copies the ValidTags to the array, starting at the index.
public ICollection ( Array array, int index ) : void
array System.Array The array to copy the tags to.
index int The index to start at.
Результат void

IsValidTag() публичный Метод

Determines if the tagName is valid.
public IsValidTag ( string tagName ) : bool
tagName string The tag to validate.
Результат bool

ToJavaScriptArray() публичный Метод

public ToJavaScriptArray ( ) : string
Результат string

ToString() публичный Метод

Returns a T:System.String that represents the current ValidTag.
public ToString ( ) : string
Результат string

ValidTagCollection() публичный Метод

public ValidTagCollection ( ) : System
Результат System

ValidTagCollection() публичный Метод

Initializes a new instance of the ValidTagCollection class.
public ValidTagCollection ( string tagsDefinition ) : System
tagsDefinition string The tags definition, defined as 'tag1@att1@att2,tag2@att3@att4'.
Результат System

this() публичный Метод

public this ( int index ) : ValidTag
index int
Результат ValidTag

this() публичный Метод

Gets the ValidTag with the specified tag name.
public this ( string tagName ) : ValidTag
tagName string
Результат ValidTag