C# 클래스 newtelligence.DasBlog.Web.Core.ValidTagCollection

상속: ICollection
파일 보기 프로젝트 열기: AArnott/dasblog 1 사용 예제들

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